初始化專案
語法
npm init [-f|--force|-y|--yes]
- 如果你加了
-y
或-f
參數,代表你將認同使用預設的設定值來產生package.json
檔。 - init | nam Documentation
範例
npm init
npm init -y
npm init -f
介紹 package.json 檔案
package.json
{
"name": "demo",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"license": "ISC"
}