como resolver esse problema no npm start [closed]

0
nikhil@nikhil-HP-2000-Notebook-PC:~$ npm start
npm ERR! Error: ENOENT, open '/home/nikhil/package.json'
npm ERR! If you need help, you may report this *entire* log,
npm ERR! including the npm and node versions, at:
npm ERR!     <http://github.com/isaacs/npm/issues>

npm ERR! System Linux 3.5.0-51-generic
npm ERR! command "node" "/usr/local/bin/npm" "start"
npm ERR! cwd /home/nikhil
npm ERR! node -v v0.10.28
npm ERR! npm -v 1.3.26
npm ERR! path /home/nikhil/package.json
npm ERR! code ENOENT
npm ERR! errno 34
npm ERR! 
npm ERR! Additional logging details can be found in:
npm ERR!     /home/nikhil/npm-debug.log
npm ERR! not ok code 0
    
por user295209 20.06.2014 / 09:10

1 resposta

2

O código de erro ENOENT significa "nenhum tal arquivo ou diretório".

Verifique sua instalação se você tiver o arquivo /home/nikhil/package.json presente e acessível pelo aplicativo.

A partir desta postagem em StackOverflow , também foi recomendado fazer npm init para inicializar e criar um arquivo package.json válido.

    
por Benoit 20.06.2014 / 09:21