codecamp

npm 启动 start

开启脚本

概要

npm start [-- <args>]

详情

在 package.json 文件中定义的 "scripts" 对象中查找 "start" 属性, 如果此属性定义了任何命令则执行之。 如果 "scripts" 对象中没有定义 "start" 属性, 默认执行 node server.js 命令。

自 npm@2.0.0 版本开始,你可以在执行脚本时使用自定义参数。更多详细信息可以参考 npm-run-script 。

例子

{
  "scripts": {
    "start": "node foo.js"
  }
}
npm start


> npm@x.x.x start
> node foo.js


(foo.js output would be here)

配置

ignore-scripts 忽略脚本

  • 默认值:false
  • 类型:Boolean

如果为true,则 npm 不会运行 package.json 文件中指定的脚本。

请注意,明确用于运行特定脚本的命令,例如 npm startnpm stopnpm restartnpm test, 并且npm run-script 如果ignore-scripts已设置仍将运行其预期脚本,但它们不会运行任何前置或后置脚本。

script-shell

  • 默认值:POSIX 系统上的/bin/shWindows 上的cmd.exe
  • 类型:nullString

用于脚本的 shell 与npm exec,npm runnpm init <pkg>命令一起运行。

npm 标记 stars
npm 停止 stop
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }