nodejs初始化init的示例代码
程序员文章站
2022-06-27 14:56:55
打开cmd创建即可
$ npm init
package name: (hello) //模块名字,npm init会自动取当前目录名作为默认名字,这里不需要...
打开cmd创建即可
$ npm init package name: (hello) //模块名字,npm init会自动取当前目录名作为默认名字,这里不需要改,直接确认即可 description: a example for write a module //模块说明 package version: (0.0.0) 0.0.1 //模块版本号,这个大家按自己习惯来定就可以 project homepage: (none) //模块的主页,如果有的话可以填在这里,也可以不填 project git repository: (none) //模块的git仓库,选填。npm的用户一般都使用github做为自己的git仓库 author name: elmer zhang //模块作者名字 author email: (none) freeboy6716@gmail.com //模块作者邮箱 author url: (none) http://www.elmerzhang.com //模块作者url main module/entry point: (none) hello.js //模块的入口文件,我们这里是hello.js </span><span style="color:#ff6666;">(这个必填)</span><span style="color:#333333;"> test command: (none) //测试脚本,选填 what versions of node does it run on? (~v0.5.7) * //依赖的node版本号,我们这个脚本可以运行在任何版本的node上,因此填 * about to write to /home/elmer/hello/package.json // 以下是生成的package.json文件内容预览 { "author": "elmer zhang <freeboy6716@gmail.com> (http://www.elmerzhang.com)", "name": "hello", "description": "a example for write a module", "version": "0.0.1", "repository": { "url": "" }, "main": "hello.js", "engines": { "node": "*" }, "dependencies": {}, "devdependencies": {} } is this ok? (yes) //对以上内容确认无误后,就可以直接回车确认了
以上这篇nodejs初始化init的示例代码就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。
推荐阅读