Go to file
2016-05-29 19:24:59 +00:00
assets fix cli call 2016-02-25 08:26:00 +01:00
compile fix cli call 2016-02-25 08:26:00 +01:00
dist improved GitLab compatibility 2016-05-29 20:56:53 +02:00
test/assets improved GitLab compatibility 2016-05-29 20:56:53 +02:00
ts improved GitLab compatibility 2016-05-29 20:56:53 +02:00
.gitignore now using gulp-typings 2016-03-12 10:21:16 +01:00
.gitlab-ci.yml update .gitlab-ci.yml 2016-05-29 21:04:44 +02:00
.npmignore add .npmignore 2016-05-27 00:59:17 +02:00
.travis.yml now completeley hiding git console output 2016-02-23 18:58:44 +01:00
appveyor.yml Update appveyor.yml 2016-05-18 02:33:05 +02:00
CHANGELOG Add changelog 2016-05-29 19:23:11 +00:00
CONTRIBUTING.md Add contribution guide 2016-05-29 19:24:59 +00:00
LICENSE Initial commit 2016-01-13 19:21:20 +01:00
package.json 5.1.18 2016-05-27 01:00:25 +02:00
README.md update .gitlab-ci.yml 2016-05-29 21:04:44 +02:00

npmts

Write npm modules with TypeScript without hassle.

Status

build status Build status Dependency Status bitHound Dependencies bitHound Code codecov.io

What is NPMTS?

NPMTS is your friend when it comes to write, test, publish and document NPM modules written in TypeScript. By default NPMTS will bundle declaration files. As a result npm module code completion in editors like Visual Studio Code works.

There is a docker image available that includes npmts to make CI a breeze:
hosttoday/ht-docker-npmg on Dockerhub

Install

First install npmts as dev dependency:

npm install npmts --save-dev

Then use it in package.json's script section to trigger a build:

"scripts": {
    "test": "npmts"
}

Default task execution order

  1. Check config in ./npmts.json
  2. Clean up from any previous builds (old js files)
  3. Install typings
  4. Transpile TypeScript with inline sourcemaps
  5. Create Declaration Files
  6. Create JsDoc Documentation
  7. Instrumentalize created JavaScript files with istanbul
  8. Run Tests
  9. Create Coverage report
  10. Upload Coverage reports to codecov.io (Tests must pass, codecov.io must be activated, by default only triggers on travis)
  11. Upload JsDoc Documentation to gh-pages branch on GitHub. (Tests must pass, requires GitHub Token)

npmts.json

the npmts.json is the main config file. You can use it to customize the behaviour of NPMTS.

{
  "mode":"default",
  "codecov":{
    "publish":true,
    "token":"sometoken"
  },
  "ts":{
    "./customdir/*.ts":"./"
  },
  "docs": {
    "publish":true,
    "destination":"github"
  },
  "tsOptions":{
    "declaration":false,
    "target":"ES6"
  },
  "typings":[
    "./ts/typings.json",
    "./subts1/typings.json",
    "./subts2/typings.json",
    "./customdir/typings.json"
  ],
  "typingsInclude":"auto",
  "cli":true
}
key default value description
"codecov" true if true, coverage data will be uploaded to codecov when running on travis
"docs" {"publish":"false"} {"publish":true, destination:"github"} lets you control what happens with your module documentation
"mode" "default" "default" will do some defualt stuff, "custom" only does what you specify
"tsOptions" {"target":"ES5", "declaration":"true"} specify options for tsc
"typings" ["./ts/typings.json"] allows you to specify multiple locations for typings.json to install. This is needed for modules that do not yet bundle typings
"cli" "false" some modules are designed to be used from cli. If set to true NPMTS will create a cli.js that wires you dist files up for cli use.

Typings

npmts looks for ./ts/typings.json by default and installs any defined typings to .ts/typings/.

Note: You can reference the typings files in any of your TypeScript code with a
/// <reference path="/some/path/main.d.ts">
We are currently working on a "typingsInclude" option, that will autoload any typings during compilation. tsconfig is NOT supported, since it would render this module useless

TypeScript

by default npmts looks for ./ts/*.ts and ./test/test.ts that will compile to ./dist/*.js and ./test/test.js

Use commonjs module system for wiring up files.

Declaration files

npmts also creates an ./dist/index.d.ts declaration file by default. You can reference it in your package.json like this.

"main": "dist/index.js",
"typings": ".dist/index.d.ts",

This is in line with the latest TypeScript best practices. You can then import plugins via the TypeScript import Syntax and tsc will pick up the declaration file automatically.

Note: If you don't want declaration files, set tsOptions.declaration to false in npmts.json

Instrumentalize Code

npmts instrumentalizes (using istanbul) the created JavaScript code to create a coverage report.

Tests

When Typings have been installed, TypeScript + Declaration files have been transpiled and the resulting JS has been instrumentalized, npmts looks for .test/test.ts which will be transpiled to test.js and run with mocha.

Any errors will be shown with reference to their originating source in TypeScript thanks to autogenerated source maps.

Example Usage in modules:

We will add more options over time.

About the authors:

Project Phase

PayPal