Problem with startar gulp serve

2

Good afternoon,

I'm creating a portal in AngularJS and Node.

After installing the npm npm install and bower bower install

The tutorial asks you to do the gulp serve command, but it has the following return:

  

[13:50:21] Error: Missing binding   C: \ Users \ ms74902 \ Desktop \ Portal_Fuse \ node_modu   les \ node-sass \ vendor \ win32-x64-51 \ binding.node Node Sass could not   find a binding for your current environment: Windows 64-bit with   Node.js 7.x

     

Found bindings for the following environments:     - Windows 64-bit with Node.js 7.x

     

This usually happens because your environment has changed since   running npm install . Run npm rebuild node-sass to build the   binding for your current environment.

Note: I already executed the command npm rebuild node-sass but without success, node, and all modules are updated.

  

[email protected]
  [email protected]
  Node v7.1.0

    
asked by anonymous 17.11.2016 / 16:59

1 answer

0

Your NPM cache may be corrupted.

Try

npm cache clean

followed by

npm rebuild node-sass

    
17.11.2016 / 17:06