安装

假设您已经安装了 Node.js,创建目录以保存应用程序,并将其设置为工作目录。

$ mkdir myapp
$ cd myapp

使用 npm init 命令为应用程序创建 package.json 文件。 有关 package.json 工作方式的更多信息,请参阅 Specifics of npm’s package.json handling。 For more information on how package.json works, see Specifics of npm’s package.json handling.

$ npm init

This command prompts you for a number of things, such as the name and version of your application. For now, you can simply hit RETURN to accept the defaults for most of them, with the following exception:

entry point: (index.js)

输入 app.js,或者您希望使用的任何主文件名称。如果希望文件名为 index.js,请按回车键以接受建议的缺省文件名。 If you want it to be index.js, hit RETURN to accept the suggested default file name.

myapp 目录中安装 Express,然后将其保存在依赖项列表中。例如: For example:

$ npm install express

要暂时安装 Express 而不将其添加到依赖项列表中:

$ npm install express --no-save

默认情况下,版本为 npm 5.0+ 的 npm install 将模块添加到 package.json 文件中的 dependencies 列表;对于较早版本的 npm,必须显式指定 --save 选项。 今后运行 app 目录中的 npm install 将自动安装依赖项列表中的模块。 Then, afterwards, running npm install in the app directory will automatically install modules in the dependencies list.

Next: Hello World

Edit this page