我正在尝试将npm包streaker-js导入我的Meteor应用程序,但我认为它的名称中有一个破折号/连字符有问题。
使用
安装meteor npm install --save streaker-js
很好。
但是当尝试使用
导入客户端代码时import streaker-js from 'streaker-js';
我收到错误:
=> Errors prevented startup:
While processing files with ecmascript (for target web.browser):
client/main.js:4:15: Unexpected token (4:15)
=> Your application has errors. Waiting for file change.
我的理由是导入名称中包含短划线的NPM包存在问题。
那么,你如何将 streaker-js 导入Meteor?
答案 0 :(得分:2)
javascript变量不能包含连字符。 试试这个:
p