意外标记<

发布于 2024-12-27 07:11:04 字数 789 浏览 2 评论 0 原文

使用 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 视频中显示的示例。

Using the nodejs v.6.7 with faye v.7.1 I am getting error

/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)
-----------------------

I am trying to implement example showing in peepcode's Meet node.js video.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

故人爱我别走 2025-01-03 07:11:04

似乎您在构建 faye_node 之前需要 faye.js

您需要遵循 faye 存储库上的说明 或通过 安装它npm

npm install faye -d

如果您通过 NPM 安装它,您可以 require("faye-node")

Seems like you requiring faye.js as is before building faye_node.

You need to follow instructions on faye repository or installing it via npm:

npm install faye -d

If you install it via NPM you can require("faye-node")

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文