** Please note that this project uses the "hbs" library and not the "express-handlebars" library **
npm install express-generator
express --view=hbs folder_to_install_into_or_leave_empty_for_current_folderThis tutorial steps through on setting up Node with Express Handlebars using the hbs framework. You will learn how to post form data and retrieve that data, as well as to return the data back to the client side. If you're looking to learn how routes, views, helpers, and components work together, then this is a good tutorial to follow. Watch my full tutorial video on youtube.
Install node either by going to nodejs.org or homebrew
After downloading this project, remember to install the dependencies by typing:
npm installTo run the webserver:
npm start