This is a very neat and simple starter kit for an angular 4 MEAN SPA applications. Obviously this won't be perfect for every situation, but I found this really necessary to overcome the fear of the scary blank project and to discover some best practices on how to structure a project. Anyway it shouldn't be too hard to expand it to fit your needs.
- Clone this repo:
git clone https://github.com/giacomocerquone/angular2-mean-starter.git
cd
into the folder of the repo you just cloned- Install npm dependencies
npm install
- Start a MongoDB instance
- You're ready to go, give
npm run start
to test the application
npm start
- Launch development server of Angular Cli and server.js node app through nodemon for live restartnpm run build
- Build the ng project into the dist folder. In production you will just start the server.js file- You can define other scripts in package.json based on the available commands provided by angular-cli
- Node.js (you don't say)
- Express 4
- Mongoose to handle MongoDB connections
- Angular 4 + Angular Material
- Angular Cli
- TypeScript
- Nodemon for live server restart
- Concurrently for running and handling multiple npm packages
- Morgan as logging library
- Angular-cli to handle all the angular stuff
I would be really happy to have some contributions, advices or anything else you can bring in to improve this starter.
If you want to submit your own project developed with this starter kit, just open a Pull Request and edit this Readme with the link to your repo.