Set of command line utils form Globetown.
$ npm install -g globe
$ globe
Building a simple command line tool with npm Publishing npm packages Learn shell.js Npm link, developing your own npm modules without tears
You probably don't want to install everything in the root directory since that would require root privileges, forcing sudo
everywhere.
- create an
.npmrc
(aka npm resource) - add
prefix = /Users/<your username>/npm
- create that folder
mkdir ~npm
- add the new folder to the PATH
export PATH=~/npm/bin:$PATH