Issue
try to install on my AWS EC2 ubuntu server the angular-fullstack framework found in here angular-fullstack
Getting this error after running 'gulp serve'
:
module.js:471 throw err;
Error: Cannot find module './build/bindings/encode.node' at ...
on my mac os everything works fine. I only getting this error on my ubuntu server.
Help? Please!!!
Some information:
Operation system : Ubuntu 16.04
Solution
This means that the module failed to build properly when you did an npm install
on your project. An install inside the module’s directory should fix this:
$ (cd node_modules/iltorb && npm i)
Answered By – Andrew Koroluk
Answer Checked By – Timothy Miller (AngularFixing Admin)