I'm getting this error:
Error: Cannot find module 'browserify'
When I add this line to my app/server.js file:
var browserify = require('browserify');
Now I'm still new to Node, but I think I installed it correctly, via
npm install -g browserify
as per their docs.
I'm pretty sure this is the command to check my global modules:
D:\Websites\MySite> npm ls -g
C:\Users\Mark\AppData\Roaming\npm
├─┬ browserify@1.17.2
│ ├─┬ buffer-browserify@0.0.4
│ │ └── base64-js@0.0.2
It lists browserify there. So why can't I require
it?
I was face same problem but if you want to install browserify module you can use this
npm install browserify