package.json中的脚本部分是什么?
let mvndfn = foreign "mvndfn" (ptr double @-> returning float)
}
此处"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start-me" : "node one.js",
"start-over" : "node two.js"
和start-me
的含义是什么?
答案 0 :(得分:4)
'脚本' npm
或yarn
命令可以使用section来允许您执行以下操作; npm run start-me
此时它将执行node one.js