2

我是第一次尝试 NodeJS。我正在遵循https://github.com/angular/angular-seedhttps://github.com/thedigitalself/angular-sprout上的 hello world 指令(对于稍微修改的 fork 有相同的 hello world 指令第一个)。

在这两种情况下,我都应该使用 Node 运行包含在 repo 中的 web-server.js 文件,然后导航到http://localhost:<port>/app/index.html

这给了我一个 404 错误页面(写在 web-server.js 文件中),就像 /app/ 一样。

但是,如果我导航到http://localhost:<port>我会得到 web-server.js 脚本所在的文件系统目录的目录列表,该脚本也是用 web-server.js 编写的。

知道为什么 web-server.js 找不到 /app/ 或 /app/index.html 吗?

4

1 回答 1

5

Make sure you run the server from your root directory.

~/angular-seed/

In here you do node scripts/web-server.js

Then you can visit

http://localhost:<PORT>/app/index.html

于 2013-07-14T19:41:42.313 回答