2

我正在尝试在 Node.js 中构建一个简单的“Twitter”风格的短信应用程序,它使用 Redis 作为数据库(尽管我听说 MongoDB 可能更容易)......

我找到了一些指向https://github.com/mranney/node_redis方向的链接,因此我使用Brunch设置了一个新的 Node.js 项目,并按照说明在我的项目目录中运行以下内容:

npm install redis hiredis

然后,我将 auth.js 示例中的以下内容添加到 vendor/script.js

var redis  = require("redis"),
client = redis.createClient();

但是,当我运行 brunch w -s 时,我在控制台中收到以下错误:

Uncaught Error: Cannot find module "redis"

我假设这与未包含在我的项目中的模块有关,但我不确定从哪里开始。我添加了

"redis": "latest"

到我的 package.json 文件,但这似乎没有做任何事情。

我还尝试通过运行全局安装 redis 模块

sudo npm install -g redis

但仍然没有运气。

我还应该补充一点,我在 OS X 上安装了 redis-server,我可以在终端中运行它:

$ redis-server
[2221] 17 Aug 10:48:42 # Warning: no config file specified, using the default config. In     order to specify a config file use 'redis-server /path/to/redis.conf'
[2221] 17 Aug 10:48:42 * Server started, Redis version 2.4.13
[2221] 17 Aug 10:48:42 * The server is now ready to accept connections on port 6379
[2221] 17 Aug 10:48:42 - 0 clients connected (0 slaves), 922304 bytes in use
[2221] 17 Aug 10:48:47 - 0 clients connected (0 slaves), 922304 bytes in use

我的应用程序目录是标准的早午餐安装 -

app
config.coffee
generators
node_modules
package.json
public
README.md
test
vendor

我究竟做错了什么?

4

1 回答 1

1

Brunch 是 html5 应用程序组装器,而不是 node.js,你不能在那里需要节点模块。

于 2012-08-30T05:33:06.437 回答