0
When I try to install the Express in the Ubuntu, with the command npm install express, this error occurs:
npm WARN enoent ENOENT: no such file or directory, open '/home/flavio/package.json'
npm WARN enoent ENOENT: no such file or directory, open '/home/flavio/node_modules/nodejsSchoolOfNet/package.json'
npm WARN flavio No description
npm WARN flavio No repository field.
npm WARN flavio No README data
npm WARN flavio No license field.
Try first
npm init, to create the . json that identifies the packages to be installed. Thennpm install express --save– Miguel
You want to install only within a project or global?
– relaxeaza
I want to install global
– Flavio Cardoso