/node-typescript-template

Write your node app with typescript immediately!

Primary LanguageTypeScriptMIT LicenseMIT

node-typescript-template

Write your node app with typescript immediately!

What's included

The following programs are included to help you bootstrap your app development:

  • configured node.js & typescript development environment
  • jest testing framework
  • linter (tslint)
  • VSCode workspace configuration

Prerequisites

Please ensure the following programs have been installed on your system before proceeding:

Usage

Clone

$ git clone https://github.com/raibima/node-typescript-template my-app

Reconfigure git

$ cd my-app
$ rm -rf .git
$ git init

Install dependencies

$ yarn

Watch ts changes

$ yarn watch

Start app in dev mode (with nodemon)

$ yarn dev