Created
November 15, 2013 01:11
-
-
Save davidtucker/7477528 to your computer and use it in GitHub Desktop.
Installing Dependencies with NPM
This file contains 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 characters
# Installing Express and Socket.io | |
npm install express --save-dev | |
npm install socket.io --save-dev | |
# Installing Dependencies (for other developers) | |
npm install | |
# Updating Dependencies (if new versions were released) | |
npm update |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment