当我 运行 "npm start" 时,哪些 js 文件正在 运行?
Which are the js files that are being run when I run "npm start"?
我正在尝试使用提供的官方文档获取 angularjs v2。
我按照此页面上的说明进行操作。
https://angular.io/docs/ts/latest/guide/setup.html
在我 运行 npm start
之后,我看到一个网页 http://localhost:3000/ 在我的默认浏览器上自动启动。
我在quickstart 文件夹中看到几个js 文件。 运行 中的 js 文件有哪些,顺序是什么?是否有一个主文件告诉 npm npm start
哪些文件要 运行? npm 如何知道要 运行 哪些文件?
您可以在每个文件上发出警报("file name") 以查看第一个 运行 或 console.log("file name ") ;
在您的 package.json 文件中会有一个名为 "start" 的 "script"。您 运行 所在的人可以在这里找到:https://github.com/angular/quickstart/blob/master/package.json
"start": "tsc && concurrently \"tsc -w\" \"lite-server\" ",
正在执行命令tsc && concurrently "tsc -w" "lite-server"
有关 tsc
和 concurrently
节点包的用法,请查看 npmjs.com:
来自npm help start
This runs an arbitrary command specified in the package's "start" property of its "scripts" object. If no "start" property is specified on the "scripts" object, it will run node server.js.
所以打开package.json
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
只需添加一些内容即可。
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "arbitrary command"
},
我正在尝试使用提供的官方文档获取 angularjs v2。
我按照此页面上的说明进行操作。
https://angular.io/docs/ts/latest/guide/setup.html
在我 运行 npm start
之后,我看到一个网页 http://localhost:3000/ 在我的默认浏览器上自动启动。
我在quickstart 文件夹中看到几个js 文件。 运行 中的 js 文件有哪些,顺序是什么?是否有一个主文件告诉 npm npm start
哪些文件要 运行? npm 如何知道要 运行 哪些文件?
您可以在每个文件上发出警报("file name") 以查看第一个 运行 或 console.log("file name ") ;
在您的 package.json 文件中会有一个名为 "start" 的 "script"。您 运行 所在的人可以在这里找到:https://github.com/angular/quickstart/blob/master/package.json
"start": "tsc && concurrently \"tsc -w\" \"lite-server\" ",
正在执行命令tsc && concurrently "tsc -w" "lite-server"
有关 tsc
和 concurrently
节点包的用法,请查看 npmjs.com:
来自npm help start
This runs an arbitrary command specified in the package's "start" property of its "scripts" object. If no "start" property is specified on the "scripts" object, it will run node server.js.
所以打开package.json
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
只需添加一些内容即可。
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "arbitrary command"
},