Advertisement
Guest User

Untitled

a guest
Apr 21st, 2015
232
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.75 KB | None | 0 0
  1. Download Cmder
  2. https://bliker.github.io/cmder/
  3.  
  4. The guide I followed
  5. http://howtonode.org/how-to-install-nodejs
  6.  
  7. Text based web browser
  8. http://www.tecmint.com/command-line-web-browsers/
  9.  
  10. express.js installation (Simplifies node.js)
  11. npm install express
  12.  
  13. This is the guide for making an extern server. (for express)
  14. http://coenraets.org/…/creating-a-rest-api-using-node-js-e…/
  15.  
  16. Install MongoDB
  17. http://docs.mongodb.org/ecosystem/drivers/node-js/ npm install mongodb
  18.  
  19. Install Mongoose
  20. http://docs.mongodb.org/ecosystem/drivers/node-js/ npm install mongoose
  21.  
  22. This is all the packages we have access to via Node.js
  23. https://www.npmjs.com/
  24.  
  25. Global
  26. /usr/local/lib/node_modules
  27.  
  28. Directly save to package.json
  29. npm install "YOUR PACKAGE" --save
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement