添加excel库后未定义meteor

我想将我的网页上的数据导出到Excel文件。 经过一番挖掘,我发现meteor超级 。 添加包后

meteor add netanelgilad:excel 

并刷新我越来越

 global-imports.js?57a9dbc…:5 Uncaught TypeError: Cannot read property 'Excel' of undefined template.webapp.js?b8d1e7a…:2 Uncaught ReferenceError: Template is not defined webapp.js?42867d3…:27 Uncaught ReferenceError: Mongo is not defined login_buttons_dialogs.html:4 Uncaught ReferenceError: Spacebars is not defined 

我没有在代码中的任何地方使用这个包,所以我不知道为什么我得到如'不能读取属性'Excel'的未定义的'

编辑

我在这里find了第二个图书馆。 在这种情况下页面加载正确。 但是,当我想要做一些像js一样的东西

 var xlsxWriter = new SimpleExcel.Writer.XLSX(); 

我越来越

 webapp.js?a483464…:161 Uncaught TypeError: Cannot read property 'Writer' of undefined 

可能是什么原因以及如何解决? 如何正确安装这些软件包中的一个并使其正常工作?