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 [email protected]:ctobolski/typescript-node-starter.git <name of your project>
yarn install
ornpm install
yarn test
ornpm test
to run testsyarn start
ornpm start
to 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>