Error giving command npm install

1
jean@jnotepc:/var/www/html/app_agenda/_views/css$: npm install
npm WARN enoent ENOENT: no such file or directory, open     '/var/www/html/app_agenda/_views/css/package.json'
npm WARN css No description
npm WARN css No repository field.
npm WARN css No README data
npm WARN css No license field.

What should I do?

    
asked by anonymous 18.11.2016 / 23:39

2 answers

1

The current folder does not have a file named package.json . You're probably in the wrong folder. I believe the correct folder is app_agenda . Try:

cd ../..

then:

npm install
    
25.05.2017 / 18:50
0
  

/ var / www / html / app_agenda / _views / css $: npm install

You are not in the right folder, try to execute the command in the folder where the packages.json

    
25.05.2017 / 18:44