module not found error when running the npm start command - npm-start

I successfully installed the node js globally in my machine but when running the localhost its not working. i also tried reinstalling it several but didn't worked.
when running the npm start the following error has came up.
anyone please tell me how to solve this. thanks in advance
Output of the npm start

Try run npm i first.
This will install all necessary dependencies.

Make sure to run npm start after you go into your frontend folder: cd frontend

Related

Cannot invoke instructions. Missing package "#adonisjs/core"

I am trying do:
npm init adonis-ts-app blog
And I am getting this issue: Cannot invoke instructions. Missing package "#adonisjs/core"
Can someone help me about this issue? I am using AdonisV5
I installed the GIT com sudo apt install git and solved it!!

I am getting errors while installing ember add on ember-cli-tutorial-style,

enter image description here
below versions of node, npm and ember-cli i am using...
ember-cli: 2.18.0
node: 8.9.4
os: win32 ia32
npm : 5.6.0
please guide me how to address this kind of issues
In error, warning its saying to update minimatch version to 3.0.2 for that you can run the below command,
npm install --save-dev minimatch#3.0.2
After that you can try running ember install ember-cli-tutorial-style.
If this still shows error, you can directly do,
npm install --save-dev ember-cli-tutorial-style
Actually this does not have to do with minimatch warning.
What npm is telling you, is that it cannot find that module (in your case ember-cli-tutorial-style).
Make sure that, this npm package actually exists!

Installing npm for bower on dokku

I am trying to use bower install on my Django app, which is running on a dokku image.
I've got a plugin which tries to run it on pre-deploy but it needs npm and there's no npm installed on the image.
Does anyone know how to get npm on to the image or am I going about things the wrong way here?
In case anyone stumbles over this problem themselves, the answer is to use this plugin:
https://github.com/F4-Group/dokku-apt

Loopback lb-ng (LoopBack Angular SDK command-line tool) not working

I'm going through the tutorials of http://docs.strongloop.com, and I've reached http://docs.strongloop.com/display/public/LB/Add+a+client+app.
Yet when I execute 'lb-ng ../server/server.js js/lb-services.js' I get an error: Cannot find module 'loopback'.
Any help would be appreciated!
For the new version of loopback you need to install lb-ng command with this line of command
sudo npm install -g loopback-sdk-angular-cli
also try to be in the client folder make sure that you have js directory in client directory then execute these lb-ng commad
lb-ng ../server/server.js js/lb-services.js
it will work
:)
did you npm install your dependencies? check and see if you have a node_modules dir in your project root.
if you're using a newer version of node, try uninstalling node and reinstalling an LTS version.
npm uninstall -g strongloop
npm cache clear
npm install -g strongloop
This is how I fixed this problem for me.
install strong loop and then run lb-ng command this is how i fixed this problem

Foundation 5 Sass Creates Empty Project Folder

I'm following the guide over here to install Foundation with Sass. I've got Git, Ruby and Node.js installed. I also believe Bower is installed correctly because when I type bower help into the command line I get information on its command.
When I try to install Foundation with gem install foundation I get this error:
Fetching: foundation-1.0.4.gem (100%)
ERROR: While executing gem ... (Errno::EACCES)
Permission denied - /usr/local/rvm/gems/ruby-1.9.3-p194/gems/foundation-1.0.4/.gitignore
If I then try adding sudo to the beginning of that command it seems to install just fine. Is this the correct way to do this?
Then when I enter foundation new test-project it creates that directory and seems to create those files, but when I go into the "test-project" folder it's empty.
Does anyone have an idea of what I'm doing wrong? Any help would be appreciated.
Thanks in advance!
Ok, so it seems like it with a problem with my git install. I uninstalled git and installed the latest version, and that seemed to do the trick. That folder is now populated with the Foundation files and I can get to work!