Go to file
2017-02-11 23:37:06 +01:00
assets update dependencies and README 2017-02-11 20:23:10 +01:00
dist added clean --all 2017-02-11 23:37:01 +01:00
ts added clean --all 2017-02-11 23:37:01 +01:00
.gitignore update dependencies and README 2017-02-11 20:23:10 +01:00
.gitlab-ci.yml add right images to gitlab ci 2016-07-29 03:16:59 +02:00
npmextra.json now has better support for docker in docker 2016-07-29 00:52:30 +02:00
package.json 1.2.3 2017-02-11 23:37:06 +01:00
README.md update dependencies and README 2017-02-11 20:23:10 +01:00
tslint.json update dependencies and README 2017-02-11 20:23:10 +01:00
yarn.lock added clean --all 2017-02-11 23:37:01 +01:00

npmdocker

develop npm modules cross platform with docker

Availabililty

npm git git docs

Status for master

build status coverage report npm downloads per month Dependency Status bitHound Dependencies bitHound Code TypeScript node JavaScript Style Guide

Usage

Use TypeScript for best in class instellisense.

Why does this package exist?

Sometimes you want a clean and fresh linux environment everytime you test your package. Usually this is the default i CI, but locally behaviour tends to defer.

Where does it work

The npmdocker package works in everywhere where the docker cli is available. e.g.:

  • docker toolbox
  • native docker application
  • docker in docker
  • mounted docker.sock

How do I use it?

create a npmextra.json in the project's root directory

{
  "npmdocker": {
    "baseImage": "hosttoday/ht-docker-node:npmts",
    "command": "npmci test stable",
    "dockerSock": false
  }
}
option description
baseImage the base image that is the context for your project
command the cli command to run within the the project's directory inside the docker container
dockersSock wether or not the testcontainer will have access to the docker.sock of the host

For further information read the linked docs at the top of this README.

MIT licensed | © Lossless GmbH

npm