forked from freeCodeCamp/freeCodeCamp
-
Notifications
You must be signed in to change notification settings - Fork 2
Back End Project Resources
Quincy Larson edited this page Aug 20, 2016
·
1 revision
The curriculum lead-up to the first Back End Project is not very comprehensive. Here are a number of common resources which other campers have found helpful.
- Introduction to Yeoman - Lots of helpful tips and tricks for the Yeoman Angular Fullstack setup
- Angular Generator - Generator used by Yeoman, you can find syntax and what files it creates
- API for Charting the stock market: https://www.quandl.com/help/api
- 5 Part Series on setting up a MEAN stack https://www.youtube.com/watch?v=kHV7gOHvNdk
- A MEAN tutorial that creates a simple Twitter clone https://channel9.msdn.com/Series/MEAN-Stack-Jump-Start
- Clementine is a stripped down MEAN stack, great for learning the fundamentals.
https://johnstonbl01.github.io/clementinejs/tutorials/tutorial-beginner.html - Authentication with Passport for the MEAN stack: https://vickev.com/#!/article/authentication-in-single-page-applications-node-js-passportjs-angularjs
- An amazing list of resources for learning the MEAN stack: https://github.com/ericdouglas/MEAN-Learning
- https://scotch.io/tutorials/setting-up-a-mean-stack-single-page-application
- https://scotch.io/tutorials/node-and-angular-to-do-app-application-organization-and-structure
- Open gruntfile.js and edit both instances of
livereload: true
tolivereload: false
. - Open server/config/express.js and comment out the line
app.use(require('connect-livereload')());
Learn to code and help nonprofits. Join our open source community in 15 seconds at http://freecodecamp.com
Follow our Medium blog
Follow Quincy on Quora
Follow us on Twitter
Like us on Facebook
And be sure to click the "Star" button in the upper right of this page.
New to Free Code Camp?
JS Concepts
JS Language Reference
- arguments
- Array.prototype.filter
- Array.prototype.indexOf
- Array.prototype.map
- Array.prototype.pop
- Array.prototype.push
- Array.prototype.shift
- Array.prototype.slice
- Array.prototype.some
- Array.prototype.toString
- Boolean
- for loop
- for..in loop
- for..of loop
- String.prototype.split
- String.prototype.toLowerCase
- String.prototype.toUpperCase
- undefined
Other Links