List all packages(meteor) and their dependencies
For listing all meteor packages installed to a meteor project you can simply runmeteor list on command line. But if you need to know which packages those are
depending on then you need this amazing piece of commands:
|
|
List all linked modules(npm)
Locally linked namespaced modules (@namespace/moduleName).
|
|
Creating and setting new password
Locate yourself into Meteor project folder and make sure that the installation
has sha and bcrypt installed.
|
|
Then fire up your meteor project and open meteor shell
|
|
Password hash will be printed in server console logs copy it from there.
Open meteor mongo and find your user:
|
|
Then use that id to update new password for your user:
And voila! now you should be able to login with your new password =]
SIDENOTE: you could also skip finding id and just do it like this: