Meteor Out of Memory
问题 I'm using meteor to make scrapping engine and I have to do a HTTP GET request and this send me an xml but this xml is bigger than 400 ko. I get a exception "out of memory". result =Meteor.http.get 'http://SomeUrl.com' FATAL ERROR: JS Allocation failed - process out of memory There is a way to increase memory limit of a variable ? 回答1: I'm developing on Windows and had the same error. In my case, was caused by a flood of console.log statements. I disabled the log statements, and works fine