Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

boost

Package Overview
Dependencies
Maintainers
1
Versions
99
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

boost

Robust pipeline for creating build tools that separate logic into routines and tasks.

  • 0.0.5
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
34
decreased by-75.18%
Maintainers
1
Weekly downloads
 
Created
Source

Boost v0.0.0

Build Status

Robust pipeline for creating build tools that separate logic into routines and tasks.

Example

If Babel + Babili was created using this library, the implementation would look something like the following.

(new Pipeline('babel', require('./.babelrc')))
  .phase(new LocateRoutine('locate'))        // Glob initial files
  .phase(new ResolveRoutine('resolve'))      // Resolve dependency lookups
  .phase(new TransformRoutine('transform'))  // Apply transformations
  .phase(new MinifyRoutine('minify'))        // Apply minification
  .phase(new BundleRoutine('bundle', {       // Bundle and or output the files
    out: './lib',
  }))
  .execute('./src');

FAQs

Package last updated on 20 Dec 2016

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

SocketSocket SOC 2 Logo

Product

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

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc