It is because you are installing async globally.
npm install async
will put create a directory called node_modules
, and the require
lookup algorithm will find it there.
It is because you are installing async globally.
npm install async
will put create a directory called node_modules
, and the require
lookup algorithm will find it there.