配置 Node JS 应用程序以使用 NPM
我有一个非常简单的 Node JS 应用程序,我想包含 Express JS 框架。我已经使用 NPM 安装了 Express(以及使用 Homebrew 的 NPM),没有任何错误:
brew install npm
npm install express
我的 server.js
文件仅包含:
var express = require('express');
当我运行我的应用程序时,我收到 Error: Cannot find module '快递'
。如何告诉我的 Node 应用程序包含该库?
I have a really simple Node JS app and I'd like to include the Express JS framework. I've installed Express with NPM (and NPM with Homebrew) without any errors using:
brew install npm
npm install express
And my server.js
file contains only:
var express = require('express');
When I run my application I get Error: Cannot find module 'express'
. How can I tell my Node application to include the library?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您需要告诉节点您的库在哪里。
摘自 http://nodejs.org/api.html
You need to tell node where your libs are.
extract from http://nodejs.org/api.html
以下是使用 npm 的捆绑命令的演练:
http://intridea.com/2010/8/24/using-npm-with-heroku-node-js?blog=company
Here's a walkthrough of using npm's bundle command:
http://intridea.com/2010/8/24/using-npm-with-heroku-node-js?blog=company