This page was saved using WebZIP 7.0.3.1030 offline browser on 12/02/19 14:55:01.
Address: http://www.zhufengpeixun.cn/ahead/html/7.npm2.html
Title: 珠峰架构师成长计划  •  Size: 17987  •  Last Modified: Sun, 01 Dec 2019 11:37:11 GMT

1. npm script #

1.1 快速创建项目 #

npm init
npm init -f
npm init -y
npm config set init.author.email "[email protected]"
npm config set init.author.name "zhufengnodejs"
npm config set init.author.url "http://github.com/zhufengnodejs"
npm config set init.license "MIT"
npm config set init.version "0.0.1"

1.2 用 npm run 执行命令 #

  "scripts": {
    "test": "echo \"Error: no test specified\" && exit 1",
    "eslint": "eslint --version"
  }
npm run eslint