roll-your-own-authentication
roll-your-own-authentication copied to clipboard
Update to work with Meteor 1.4
Meteor has made some major changes and this version does not work with 1.4.0.1. I was wondering if you would update this to make it work?
First of all let me thank you for this amzing content you guys are offering, it's just overwhelming good written and presented, thank you big time!
Help would be really apreciated, since imho meteorchef represents a more standard way of implementing with meteor. This is what i got when trying to load / run the configureServices: Meteor 1.4.1:
"C:\[..]\runnerw.exe" C:\[..]\meteor.bat --settings settings.json
[[[[[ C:\work\src\app ]]]]]
=> Started proxy.
=> Started MongoDB.
Unable to resolve some modules:
"modules/configure-services.js" in
/C/work/src/app/server/main.js (os.windows.x86_32)
"modules/startup.js" in /C/work/src/app/server/main.js
(os.windows.x86_32)
If you notice problems related to these missing modules, consider running:
meteor npm install --save modules
My question is, why? I also added the _modules.js file and tried to initialize ((Modules.server = {})) the Server object everywhere possible on the server side, still no way meteor would recognize this module / server object.
Could not found any specific "module" to import a la import 'meteor/xyz'. I am also confused when to strict import something on meteor or when to let meteor do it's work, i guess i am spoiled by previous versions of meteor where verything were imported by client and server folder structure.
Anyway, please help? :)