A minimal boilerplate for Node.js web applications written in TypeScript 📦
Includes:
- Typescript - JavaScript that scales
- TypeScript ESLint - source code linter
- Prettier - an opinionated code formatter
To build and run this app locally you will need a few things:
- Clone the repository
git clone --depth=1 [email protected]:nicksp/typescript-node-starter.git <project_name>
- Install dependencies
cd <project_name>
npm install
- Generate production build and run the project
npm start
- Local development with cold reloading
npm run dev
- Linting
npm run lint
npm run lint:fix
- Code formatting
npm run pretty
npm run pretty:fix
- Testing
npm test
https://github.com/Microsoft/TypeScript-Node-Starter
https://basarat.gitbook.io/typescript/
Copyright (c) Nick S. Khan. All rights reserved. Licensed under the MIT License.