Geyser is a global package manager for npm. It offers a generic solution to the problem of global package management.
Geyser runs over npm itself, and is package-agnostic.
Geyser depends on Node and npm. It should be installed globally:
sudo npm install -g geyser
geyser install
geyser install using ~/Dropbox/dev/node-globals.json
You must create a geyser.json and specify all of your environment's dependencies with optional metadata.
You can interactively create a geyser.json with the following command:
geyser init
The geyser.json defines several options:
name: The name of your package.version: A semantic version number. (see semver)dependencies[hash]: Packages your package depends on.
{
"name": "my-project",
"version": "1.0.0",
"dependencies": {
"bower": "latest",
"grunt": "0.4.2",
"coffee-script": "*"
}
}
Copyright Justin Godesky. Released under the AGPLv3 License.