Allow you to quickly get up and running with a simple node development environment.
- Server reloads on changes
- Code formatting
- Tests configured for typescript and node environment
git clone git@github.com:ctobolski/typescript-node-starter.git <name of your project>yarn installornpm installyarn testornpm testto run testsyarn startornpm startto bundle and run main.ts- Update your project remote to point towards your repository if you want to commit changes
git remote remove origin && git remote add origin <your remote repo>