If there are errors in the project, such as some grammatical errors, an error will be reported when running npm start, but you can run npm run lite directly and open the browser. Why?
"npm start command, but the npm run lite command is actually run." Does this mean that npm start and npm run lite are the same?
"npm run lite runs the service alone and cannot compile js." That's why the error is ignored. Is it displayed in the browser?
Open
package.json
,对比一下scripts
下面start
和lite
and you will know the difference between the two.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
if the package's "scripts" object doesn't have "start" command, it would throw an error