意外标记<
使用 nodejs v.6.7 和 faye v.7.1 我收到错误
/path/livestats/node_modules/faye0.7/faye.js:18
ID_LENGTH: <%= Faye::ID_LENGTH %>,
^
-----------------------
Exception: SyntaxError: Unexpected token <
SyntaxError: Unexpected token <
at Module._compile (module.js:427:25)
at Object..js (module.js:450:10)
at Module.load (module.js:351:31)
at Function._load (module.js:310:12)
at Module.require (module.js:357:17)
at require (module.js:368:17)
at Object.<anonymous> (/path/livestats/lib/livestats.js:4:12)
at Module._compile (module.js:432:26)
at Object..js (module.js:450:10)
at Module.load (module.js:351:31)
-----------------------
,我正在尝试实现 peepcode 的 Meet node.js 视频中显示的示例。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
似乎您在构建
faye_node
之前需要faye.js
。您需要遵循 faye 存储库上的说明 或通过
安装它npm
:如果您通过 NPM 安装它,您可以
require("faye-node")
Seems like you requiring
faye.js
as is before buildingfaye_node
.You need to follow instructions on faye repository or installing it via
npm
:If you install it via NPM you can
require("faye-node")