Skip to content

Latest commit

 

History

History
78 lines (50 loc) · 1.28 KB

README.md

File metadata and controls

78 lines (50 loc) · 1.28 KB

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 git@github.com: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.