Importing a JSON file in Meteor
There are three ways you can go about this, it depends what you’re most comfortable with & your use case. The first is to store it as a JS Object if your json data is { “name”:”bob” } you could use myjson = {“name”:”bob”} in a .js file in the /lib folder and just call … Read more