Reputation: 3101
Following simplest tutorial on https://cli.angular.io/
ng new my-app
cd my-app
ng serve
I receive following error
(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.
The message "You have to be inside an angular-cli project in order to use the serve command." is written in red, so it's not a warning
Node, npm, and graceful-fs are the latest version at the moment.
>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
Any ideas besides doing this on mac/linux?
Update: solution is to install NVM and install node.js version 5.12.0 (or any 5.x)
nvm install 5.12.0
nvm use 5.12.0
npm install -g angular-cli
npm install -g typescript
After re-doing tutorial everything works just great.
Upvotes: 0
Views: 1210
Reputation: 6432
node v6 is still not supported in many packages. Consider going back to v5.
Upvotes: 1