kidtronnix / hapi-dash

Boilerplate Hapi Web and API Server Example, with frontend dashboard.
hapi-dash.smaxwellstewart.com
MIT License
113 stars 19 forks source link

can't start success #13

Closed jonahzheng closed 8 years ago

jonahzheng commented 8 years ago

{ [Error: Cannot find module '../build/Release/bson'] code: 'MODULE_NOT_FOUND' }

kidtronnix commented 8 years ago

@jonahzheng I am in the process of updating all the packages. I am now changing some code that is incompatible with new versions. Hopefully I will have a fix soon!

jonahzheng commented 8 years ago

@smaxwellstewart thank you! other error js-bson: Failed to load c++ bson extension, using pure JS version

about this error { [Error: Cannot find module '../build/Release/bson'] code: 'MODULE_NOT_FOUND' } solution is: modity node_modules\mongodb\node_modules\bson\ext\index.js bson = require('../build/Release/bson') change to bson = require('bson')

kidtronnix commented 8 years ago

@jonahzheng Just got the API server working. Hopefully will get the GUI server done soon!

On 12 November 2015 at 08:35, jonahzheng notifications@github.com wrote:

@smaxwellstewart https://github.com/smaxwellstewart thank you! other error js-bson: Failed to load c++ bson extension, using pure JS version

about this error { [Error: Cannot find module '../build/Release/bson'] code: 'MODULE_NOT_FOUND' } solution is: modity node_modules\mongodb\node_modules\bson\ext\index.js bson = require('../build/Release/bson') change to bson = require('bson')

— Reply to this email directly or view it on GitHub https://github.com/smaxwellstewart/hapi-dash/issues/13#issuecomment-156104071 .