New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

chasis

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

chasis

Tools to get rolling with Node.

latest
Source
npmnpm
Version
0.0.1
Version published
Maintainers
1
Created
Source

chasis

Chasis provides some boilerplate for common package life-cycle tasks like linting, code coverage, and testing.

Getting Started

npm install chasis

Once installed, package life-cycle hooks can invoke the common tasks by calling the chasis command. For example, the following could be added to package.json:

"scripts": {
    "coverage": "NODE_ENV=test chasis coverage",
    "pretest": "chasis lint",
    "test": "NODE_ENV=test chasis test"
  }

Tasks

The following boilerplate tasks are currently provided:

  • coverage - creates an HTML test coverage report in a cover_html directory. See the Cover homepage for more info.
  • lint - runs JSHint to check library code for common coding problems. See the JSHint homepage for more info.
  • test - runs a Mocha test suite defined in the test directory. See the Mocha homepage for more details.

FAQs

Package last updated on 22 Apr 2013

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts