For having natural language processing facility. Have added natural node package in my application using \"npm install natural\". But after installation while running the applic
To use NPM packages within your meteor application you need to first install meteor-npm
mrt add npm
You then have to add a packages.json
file at the root of your project like so;
{
"natural": "0.1.27"
}
When this file changes, meteor will automatically update its dependencies.
You can then use var natural = Meteor.require("natural")