配置 Node JS 应用程序以使用 NPM

发布于 2024-10-15 13:19:06 字数 404 浏览 1 评论 0原文

我有一个非常简单的 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 技术交流群。

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

发布评论

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

评论(2

丑疤怪 2024-10-22 13:19:06

您需要告诉节点您的库在哪里。

摘自 http://nodejs.org/api.html

require.paths
An array of search paths for require(). This array can be modified to add custom paths.

Example: add a new path to the beginning of the search list

require.paths.unshift('/usr/local/node');

You need to tell node where your libs are.

extract from http://nodejs.org/api.html

require.paths
An array of search paths for require(). This array can be modified to add custom paths.

Example: add a new path to the beginning of the search list

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