This is a starter kit for building Nodejs web applications. It handles all the tedious setup process for you so you can quickly get started building your web application.
- Server - NodeJS
- Web Framework - ExpressJs
- Database - MongoDB
- Mongoose - MongoDB NodeJs framework
- Handlebars - HTML templator
- Procfile - Used for deploying to Heroku
- Clone the repo and change it's name to the name of your application
- git clone https://github.com/ashermccall/WebStarterKit-Nodejs.git your-application
- Open terminal -> go to directory where you cloned the repo
- Delete the .git file
- Mac
- rm -rf .git
- Windows
- RMDIR .git
- Initialize this repo as your own new github repo for your application
- Mac
- Windows
- run: npm install
- run: node app.js
- Open browser and go to: http://localhost:3000/
If you see Hello World then the installation was (probably) successful.