最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Npm module not found - Stack Overflow

programmeradmin1浏览0评论

I'm running an Angular app built with Grunt and using Bower and NPM.

I tried installing my npm module locally. The files are in the main app directory in node_modules folder.

The module docs ask me to load the module with <script type="text/javascript" src="node_modules/moment/moment.js"></script>, but I get 404.

Am I missing something? Do I have to tell Grunt that I want these NPM modules?

I'm running an Angular app built with Grunt and using Bower and NPM.

I tried installing my npm module locally. The files are in the main app directory in node_modules folder.

The module docs ask me to load the module with <script type="text/javascript" src="node_modules/moment/moment.js"></script>, but I get 404.

Am I missing something? Do I have to tell Grunt that I want these NPM modules?

Share Improve this question asked Mar 22, 2017 at 16:33 user841760user841760 3591 gold badge3 silver badges14 bronze badges 3
  • it's not really possible to answer this without seeing your project, or at least having more information on how your project is organized. Are you sure that moment is installed in your node modules? What is your gruntfile doing? Where are you adding this script tag? If you have a public GitHub repo I'm happy to take a look – AJ Funk Commented Mar 22, 2017 at 16:37
  • I'm sure it is installed and in package.json. I don't know if the node_modules should be piled into dist folder. It's not there, but bower_ponents is. That's the only thing I can think of. – user841760 Commented Mar 22, 2017 at 17:37
  • @user841760 did you get a solution to this? I am working on a ReactJS project and facing the same issue. TIA – Ashwin Commented Nov 22, 2021 at 14:46
Add a ment  | 

4 Answers 4

Reset to default 1

Can you provide more information on what your app is built with? If node serves your app, you need to make the directory you link to public. Assuming you're using express, this would look something like this in your app.js file:

app.use('/node_modules', express.static(__dirname + '/node_modules/moment/moment.js'));

Edit: Or if you just want to make it work, try to load moment.js from CDN like this:

<script type="text/javascript" src="https://cdnjs.cloudflare./ajax/libs/moment.js/2.18.1/moment.js"></script>

Link to moment on CDN

Basically, npm is the package manager for all the javaScript frameworks such as Nodejs, angularjs etc. npm should be installed globally in the machine.You can install it from https://nodejs/en/ .

Next,you need check for the package.json file in your project.

If there is a package.json already existing in your project folder, then from mand line you need to go to your project folder and type npm start.

If package.json file does not exist, then in the mand line type npm init,then there will be a package.jsonfile created in your project folder.Then edit the package.json . and add the node packages into the package.json as similar way to this

{
  "name": "shoppingkart",
  "version": "0.0.0",
  "private": true,
  "scripts": {
    "start": "node ./bin/www" //If you have any scripts.
  },
  "dependencies": {
    "mongoose": "^4.9.0",  // here you should have all your node_modules listed
    "passport": "^0.3.2",
    "stripe": "^4.15.1"
  }
}

if you are not able to add the dependencies to json file, there is also another way to do it. just go to your project directory in the mand line and type

npm install --save grunt // And you need to do for all the node_modules, by replacing the **grunt**.

Automatically the dependency will be added to your package.json file.

If you installed your npm packages locally then your node_modules folder should found at the root of your project.

If you installed all your packages globally you may not see an npm_modules folder in your project.

To see where your global modules are located you can run

npm list -g 

I faced the same issue just install the package globally and save at the end.

Like:

npm install -g <package> --save

Even the above doesn't work then use -f / --force at the end to force install.

发布评论

评论列表(0)

  1. 暂无评论