Skip to content

Latest commit

 

History

History
24 lines (17 loc) · 848 Bytes

README.md

File metadata and controls

24 lines (17 loc) · 848 Bytes

Globe

Set of command line utils form Globetown.

$ npm install -g globe
$ globe

Readings

Building a simple command line tool with npm Publishing npm packages Learn shell.js Npm link, developing your own npm modules without tears

Tips

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