0.1.2 • Published 8 years ago

generator-tnblues-tsnode v0.1.2

Weekly downloads
4
License
-
Repository
-
Last release
8 years ago

GENERATOR-TNBLUES-TSNODE

A Yeoman generator that scaffolds a simple Node.js (server-side) project for TypeScript support.

Features

  • Ready-to-go support for TypeScript core features.
  • (Optional) Ready-to-go support for Mocha test specs and Chai assertions. Also includes Istanbul test coverage.
  • (Optional) Ready-to-go support for Visual Studio Code TypeScript debugging.
  • Ready-to-go support for build, clean, watch, and nodemon support using Gulp.

Get Started

  1. Clone the repo.
  2. Navigate to the repo root.
  3. npm install
  4. gulp

Gulp Tasks

Clean

Cleans out the ./build directory.

gulp clean

Build

Builds the TypeScript project. Uses tsconfig.json to control TypeScript compile options.

gulp build

Test

Runs the Mocha test specs in the ./test directory.

gulp test