[Solved] _meteor_bootstrap_.require not working in Meteor 0.6.4.1

From v 0.6.0 Packages may depend on NPM modules, using the new Npm.depends directive in their package.js Once included, package code can use Npm.require to pull in the module. Future = Npm.require(“fibers/future”) If you need to use this npm module in your app. Use meteor-npm Future = Meteor.require(“fibers/future”) 0 solved _meteor_bootstrap_.require not working in Meteor … Read more

[Solved] 1 Uncaught SyntaxError: Unexpected end of JSON input

define(“lib/config”, [], function() { “use strict”; var e = document.getElementById(“app-config”); return e ? JSON.parse(e.innerHTML) : {} }) That’s the problematic section of code. the app-config element isn’t always loaded before this part is being executed. If possible, hard code your app-config into your html solved 1 Uncaught SyntaxError: Unexpected end of JSON input