我是Angular的新手,并尝试设置角度phonecat应用程序。
我已经从这里下载了代码
https://docs.angularjs.org/tutorial/
并安装了一个nodejs。
现在,我不确定如何映射角度应用程序以与nodejs一起运行。
从其他链接,我看到每个人都运行一个webserver.js文件,但我在脚本目录下没有看到任何内容。
scripts]$ tree .
.
├── private
│ ├── old
│ │ ├── format-json.sh
│ │ ├── goto_step.bat
│ │ ├── goto_step.sh
│ │ ├── README.md
│ │ ├── ScrapeData.js
│ │ └── snapshot.sh
│ ├── push-to-github.sh
│ ├── README.md
│ ├── retag.sh
│ ├── test-all.sh
│ └── update-gh-pages.sh
└── update-repo.sh
如何在nodejs中运行应用程序。
答案 0 :(得分:0)
如果查看链接的页面,在使用npm start
安装NPM依赖项后,应该在主目录中运行npm install
。
编辑:检查他们的package.json后,你实际上可以运行npm start
。它还将运行依赖安装。