MeteorHacks: npm not working (npm modules in Meteor)

I installed MeterorHacks Npm and I added two files to the .json file:

 {
  "cheerio":"0.19.0",
  "request":"2.57.0"
}

      

I have placed the required node packages in the public meteor directory.

When I use the meteor command, the error I get in cmd is:

It just stops when npm container is created:

C:\Users\Abhishek\new>meteor
[[[[[ C:\Users\Abhishek\new ]]]]]

=> Started proxy.
=> Started MongoDB.
npm-container: updating npm dependencies -- cheerio, request...
   Building package npm-container            \

      

+3


source to share


1 answer


There is nothing wrong here. This process is time consuming for some packages. If there is a mistake, it will give a little more clarity after a while. Such problems can occur due to internet connection issue, incorrect binaries for the platform you are on.

But as it stands, it installs npm dependencies for the first time. This only happens once.



Once the installation is complete, you will know that the meteorite is running on port x (usually 3000)

+1


source







All Articles