demo1-hahaha
v1.0.0
Published
this is my first nodejs project
Downloads
13
Readme
npm 命令
npm init 初始化一个package.json
npm install express 本地安装 npm install express -g 全局安装 npm install express -S || --save 添加到生产依赖 npm install express -D 开发阶段的依赖
npm uninstall 卸载当前项目安装的模块 npm uninstall -g 卸载全局安装的模块
npm ls -g 查看全局安装的模块及依赖 npm update 更新模块 npm help 查看某条命令的详细帮助 npm root查看包的安装路径 npm config 管理npm的配置路径 npm cache 管理模块的缓存 npm start 启动模块 npm restart 重新启动模块 npm whoami 查看用户名