Last active
March 3, 2016 01:57
-
-
Save rick4470/bda3dcdc0e8ff566cde0 to your computer and use it in GitHub Desktop.
Creating a new NodeJS Project
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 characters
| mkdir channel && cd channel | |
| npm init | |
| git init | |
| echo "node_modules" >> .gitignore | |
| echo "*.xml" >> .gitignore | |
| npm install xml2js --save | |
| vim app.js |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment