0
votes

I have to install natural node in a meteor project. But for that I need to install npm so for that I am using this command "mrt add np". But it not showing anythiing means going in infinite loop. But when I tried to install natural node using command "npm install natural", it got install. Why so??

But for perperly installing natural I need to follow these steps: "Installing natural package in a meteor application" but when I am doing that basic command is not working. How can I proceed with rest of the things.

Any pointers please. Thanks in advance

1

1 Answers

0
votes

Meteorite obtains all the packages from

atmosphere.meteor.com:443

which seems to be down at the moment. Npm doesn't depend thereon, that's why npm install works for you. A solution for you might be adding the git url to the package in the smart.json à la

"somepackage": {
    "git":"https://github.com/somegreatgithubber/somepackage.git"
}

Hope that helps, kind regards!