ng 服务不适用于 Windows10(angular-cli,节点 6.3.0)

ng serve doesn't work on Windows10 (angular-cli, node 6.3.0)

遵循 https://cli.angular.io/

上最简单的教程
ng new my-app
cd my-app
ng serve

我收到以下错误

(node:5888) fs: re-evaluating native module sources is not supported. 
If you are using the graceful-fs module, please update it to a more recent version.
You have to be inside an angular-cli project in order to use the serve command.

消息“你必须在 angular-cli 项目中才能使用服务命令。”是用红色写的,所以它不是警告

Node、npm 和 graceful-fs 目前是最新版本。

>ng version
(node:7288) fs: re-evaluating native module sources is not supported. If you are using the graceful-fs module, please update it to a more recent version.
angular-cli: 1.0.0-beta.9
node: 6.3.0
os: win32 x64

除了在 mac/linux 上这样做之外还有什么想法吗?

更新: 解决方案是安装 NVM 并安装 node.js 版本 5.12.0(或任何 5.x)

nvm install 5.12.0
nvm use 5.12.0
npm install -g angular-cli
npm install -g typescript

重做教程后一切正常。

许多软件包仍然不支持 node v6。考虑回到 v5。