Socket
Socket
Sign inDemoInstall

component-regenerator

Package Overview
Dependencies
21
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    component-regenerator

facebook regenerator plugin for component-builder


Version published
Weekly downloads
3
increased by200%
Maintainers
1
Created
Weekly downloads
 

Readme

Source

component-regenerator

Build Status Coverage Status NPM version Dependency Status

facebook/regenerator plugin for component-builder

Installing

$ npm install -g component-regenerator

Usage

To convert your scripts which was writen by generator, run the following code.

var Builder = require('component-builder');
var plugin = require('component-regenerator');
var fs = require('fs');

var builder = new Builder(__dirname);

builder.use(plugin);

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-regenerator

Testing

$ npm install
$ make test

License

MIT license.

See the LICENSE.

Bitdeli Badge

Keywords

FAQs

Last updated on 22 Jan 2014

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