ExpressJS安装

发布于 2024-10-31 04:44:39 字数 169 浏览 1 评论 0原文

所以我根据教程做了 npm installexpress,安装完express后我做了

'express --version' 

,但express不在我的路径中。我想知道我做错了什么,或者有什么方法可以测试 Express 是否可以在我的操作系统上运行。

so I did npm install express according to the tutorial, after installing express I did

'express --version' 

and express is not in my path. I am wondering what I did wrong or is there any way to test if express works on my OS.

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

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

发布评论

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

评论(3

戒ㄋ 2024-11-07 04:44:39

您使用的是npm installexpress还是npm installexpress-g

如果您想从命令行使用express 程序,则应该使用第二个命令。 -g 选项全局安装该库。

第一个命令只会将库安装在 node_modules 子文件夹中,您需要在使用它之前显式找到该程序,例如。 node ./node_modules/express/bin/express (我不确定这是否是正确的命令,只是一个例子)。

Did you use npm install express or npm install express -g?

The second command is what you should use if you want to use the express program from the command line. The -g option installs the library globally.

The first command will just install the library in a node_modules subfolder, and you would need to explicitly locate the program before using it, eg. node ./node_modules/express/bin/express (I'm not sure if that's the right command, just an example).

赠我空喜 2024-11-07 04:44:39

您是否尝试将 npm 的 bin 目录的路径添加到您的 PATH 中?

export PATH="/usr/local/share/npm/bin:$PATH"

Did you try adding the path to the npm's bin directory to your PATH?

export PATH="/usr/local/share/npm/bin:$PATH"
暮光沉寂 2024-11-07 04:44:39

创建目录
并执行:
$ npm install -gexpress

如果您想使用 EJS、Stylus 等生成应用程序,只需执行:

$express --sessions --css stylus --ejs yourapp

Create a directory
and execute:
$ npm install -g express

If you want to generate an application with EJS, Stylus etc simply execute:

$ express --sessions --css stylus --ejs yourapp

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