##What? A quick lesson in serverside javascript. Creates a super basic blog that gets and posts via AJAX and saves to a JSON file. Demonstrates many important web development concepts. After finishing the project get students to talk about how they would implement other features like editing posts and basic security.
##Features
- posts.json holds all the posts, students can see just how data is stored and can edit it manually.
- jquery handles ajax requests for geting and posting blog posts.
- post form is initially hidden, shows when there is a
location.search
like ?admin - handlebars handles templates for super simple templating, just two lines of JS and the templates are written in HTML
##Setup