-
-
Save hacksparrow/7641739 to your computer and use it in GitHub Desktop.
Revisions
-
AJ ONeal revised this gist
Jul 5, 2013 . 1 changed file with 1 addition and 0 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -25,6 +25,7 @@ More Info: * http://npmjs.org/doc/json.html * http://npmjs.org/doc/developers.html * http://blog.izs.me/post/1675072029/10-cool-things-you-probably-didnt-realize-npm-could-do Appendix: -
AJ ONeal revised this gist
Nov 7, 2011 . 1 changed file with 3 additions and 0 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,3 +1,6 @@ Getting Started with NPM (as a developer) === If you haven't already set your NPM author info, now you should: npm set init.author.name "Your Name" -
AJ ONeal revised this gist
Nov 7, 2011 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -14,7 +14,7 @@ Then create a `package.json` and publish it: npm install -g pakmanager # this shows you dependencies as you `require`d them pakmanager deps # now edit `package.json` and add any deps you forgot about npm publish ./ -
AJ ONeal revised this gist
Oct 26, 2011 . 1 changed file with 6 additions and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -6,11 +6,16 @@ If you haven't already set your NPM author info, now you should: npm adduser Then create a `package.json` and publish it: cd /path/to/your-project npm init npm install -g pakmanager # this shows you dependencies as you `require`d them pakmanager deps # now edit `package.json` and add any deps you forgot aboutt npm publish ./ More Info: -
AJ ONeal revised this gist
Oct 26, 2011 . 1 changed file with 6 additions and 4 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -22,8 +22,10 @@ Appendix: If you haven't already installed npm, or you'd like the latest version: **OS X** curl http://npmjs.org/install.sh | sh **Linux** curl http://npmjs.org/install.sh | sudo sh -
AJ ONeal renamed this gist
Oct 26, 2011 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes. -
AJ ONeal created this gist
Oct 26, 2011 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,29 @@ If you haven't already set your NPM author info, now you should: npm set init.author.name "Your Name" npm set init.author.email "[email protected]" npm set init.author.url "http://yourblog.com" npm adduser Then create a `package.json` and publish it: cd /path/to/your-project npm init npm publish ./ More Info: * http://npmjs.org/doc/json.html * http://npmjs.org/doc/developers.html Appendix: If you haven't already installed npm, or you'd like the latest version: # OS X curl http://npmjs.org/install.sh | sh # Linux curl http://npmjs.org/install.sh | sudo sh