Socket
Socket
Sign inDemoInstall

component-jscoverage

Package Overview
Dependencies
5
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    component-jscoverage

jscoverage plugin for component-builder


Version published
Weekly downloads
2
increased by100%
Maintainers
1
Install size
610 kB
Created
Weekly downloads
 

Readme

Source

component-jscoverage

Build Status Coverage Status NPM version Dependency Status

jscoverage plugin for component-builder

Installing

$ npm install component-jscoverage

Usage

To enable jscoverage of your scripts, run the following code.

var Builder = require('component-builder');
var jscover = require('component-jscoverage');
var fs = require('fs');

var builder = new Builder(__dirname);

builder.use(jscover);

builder.build(function (err, build) {
  if (err) {
    throw err;
  }
  fs.writeFileSync('build/build.js', build.require + build.js);
});

Or from the command line.

$ component build --use component-jscoverage

Testing

$ npm install
$ make test

License

MIT license.

See the LICENSE.

Bitdeli Badge

Keywords

FAQs

Last updated on 17 Nov 2013

Did you know?

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc