search

Home  >  Q&A  >  body text

angular.js - npm run lite与npm start命令的区别

如果项目有错,比如一些语法错误,跑npm start会报错,但是npm run lite是可以直接过,并打开浏览器,为什么呢?
“npm start命令,但实际运行的是npm run lite命令”,是不是说明npm start和npm run lite一样的呢?
“npm run lite是单独跑服务,编译不了js”,所以才会忽略错误,在浏览器显示了吗?

我想大声告诉你我想大声告诉你2744 days ago573

reply all(2)I'll reply

  • 大家讲道理

    大家讲道理2017-05-15 17:08:34

    Open package.json,对比一下 scripts 下面 startlite and you will know the difference between the two.

    reply
    0
  • 伊谢尔伦

    伊谢尔伦2017-05-15 17:08:34

    First of all, let me tell you, this is documented
    Secondly, their names are different, of course they have different meanings. Run something, start? Of course it is the beginning, so be more special and read the documentation for details.
    BTW Real-name objection to the above of

    npm start==npm run start
    

    if the package's "scripts" object doesn't have "start" command, it would throw an error

    reply
    0
  • Cancelreply