Skip to content

A minimal boilerplate for TypeScript and Node.js applications

License

Notifications You must be signed in to change notification settings

nicksp/typescript-node-starter

Repository files navigation

TypeScript Node Starter

A minimal boilerplate for Node.js web applications written in TypeScript 📦

Includes:

Prerequisites

To build and run this app locally you will need a few things:

Getting started

  • 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

Sources

Official TypeScript-Node-Starter:

https://github.com/Microsoft/TypeScript-Node-Starter

The definitive guide to TypeScript

https://basarat.gitbook.io/typescript/

License

Copyright (c) Nick S. Khan. All rights reserved. Licensed under the MIT License.