Need a solution for npm install - node.js

I Got error like no such file or directory open in my path:
npm WARN ENOENT ENOENT: no such file or directory, open 'C:\Users\
ge.json'
npm WARN EPACKAGEJSON spandana No description
npm WARN EPACKAGEJSON spandana No repository field.
npm WARN EPACKAGEJSON spandana No README data
npm WARN EPACKAGEJSON spandana No license field.

please uninstall the same module then install it. It should be resolved.

Related

issue using npm to install upper-case module on linuxmint OS

npm WARN saveError ENOENT: no such file or directory, open '/home/spipl8/package.json'
npm WARN enoent ENOENT: no such file or directory, open '/home/spipl8/package.json'
npm WARN spipl8 No description
npm WARN spipl8 No repository field.
npm WARN spipl8 No README data
npm WARN spipl8 No license field.
this all error was occur when i try to install the upper-case modules of node.js NPM on linux mint please help me out to solve it.
I guess this is not the issue with npm, the error is saying it cannot find package.json in your directory.

Installation error while using npm install react-native-gifted-messenger --save

I am using Ubuntu 16.04 LTS, node version 6, and npm version 5
Getting the following error while installing
npm WARN saveError ENOENT: no such file or directory, open '/home/p/package.json'
npm WARN enoent ENOENT: no such file or directory, open '/home/p/package.json'
npm WARN p No description
npm WARN p No repository field.
npm WARN p No README data
npm WARN p No license field.
Any suggestions how to resolve it would be appreciated.

No such file package.json when running npm i

When I run the following commands:
npm i && npm run
I get the following error:
npm WARN saveError ENOENT: no such file or directory, open '/Users/Singh/package.json'
npm WARN enoent ENOENT: no such file or directory, open '/Users/Singh/package.json'
npm WARN Singh No description
npm WARN Singh No repository field.
npm WARN Singh No README data
npm WARN Singh No license field.
Why am I getting this error and how do I fix it?
First check there is package.json file or not if not create package.json file using npm init
The problem is that you're in the wrong directory -- you're in your user directory. If you cloned something from a repository, make sure you navigate to that directory before running npm i:
cd path/to/cloned/project
npm i && npm run <script_here>

facing issues whille installing npm ts loader and npm css loader

I am getting all these warning while installing ts loader and css loader..
npm ts loader
user#user-ThinkPad-T420s:~$ npm install --save-dev ts-loader
npm WARN saveError ENOENT: no such file or directory, open '/home/user/package.json'
/home/user
`-- ts-loader#2.1.0
npm WARN enoent ENOENT: no such file or directory, open '/home/user/package.json'
npm WARN user No description
npm WARN user No repository field.
npm WARN user No README data
npm WARN user No license field.
npm css loader
user#user-ThinkPad-T420s:~$ npm install --save-dev css-loader
npm WARN saveError ENOENT: no such file or directory, open '/home/user/package.json'
/home/user
`-- css-loader#0.28.2
npm WARN enoent ENOENT: no such file or directory, open '/home/user/package.json'
npm WARN user No description
npm WARN user No repository field.
npm WARN user No README data
npm WARN user No license field.
can anyone tell me how i can fix this ?
This is happening because you pass --save-dev parameter to npm when you install ts-loader and css-loader modules in a directory with no package.json in it.
If this is a new project, I suggest you to start by npm init, as it will create you a fresh package.json file for your project.
You can always install dependency globally if you needed it for more than one project:
npm install -g ts-loader css-loader
Others alert are not very important, but you can add a licence and a README file to get rid of it if you care.

npm install error after installing nodejs

I have a problem to install the npm, These are my errors, there are lot of errors , but i paste some of these here, please tell me what should i do?I have already installed nodejs , mongodb and all..
npm WARN package.json hublin#0.1.0 No repository field.
npm WARN package.json awesome-collaborative-editor#1.0.0 No description
npm WARN package.json awesome-module#1.0.0 No README data
npm WARN package.json awesome-yjs#0.0.0 No description
npm WARN package.json chokidar#1.5.1 No README data
npm WARN package.json karma-mocha#0.1.1 No README data
npm WARN package.json karma-phantomjs-launcher#0.1.4 No README data
npm WARN package.json karma-rawfixtures-preprocessor#0.0.1 No repository field.
npm WARN package.json om-email-invitation#0.0.3 No README data
npm WARN package.json om-invitation#0.0.2 No README data
npm WARN package.json om-mailer#0.0.1 No README data
npm WARN package.json trim#0.0.1 No repository field.

Resources