Code Monkey home page Code Monkey logo

babel-bits's Introduction

babel-bits

babel plugin for bit runner and transform for bit imports.

Install

npm install babel-bits

Configuration for bit-imports

Options are forwarded right to babel. Take a look at all available options to fine tune babel. bit imports will automatically handle filename.

You can take a look at bit sandbox for a sample where you can play with babel in the browser.

plugin method

bitimports.plugin("js", {
  transform: {
    handler: "babel",
    options: {
      sourceMaps: "inline"
    }
  }
});

Or alternatively:

plugin config

bitimports.config({
  plugins: {
    js: {
      transform: {
        handler: "./node_modules/babel-bits/dist/index.js",
        options: {
          ast: false,
          sourceMaps: "inline"
        }
      }
    }
  }
});

Configuration bit runner bitrunnerfile.js

Run babel

var bitRunner = require('bit-runner');
var babel     = require('babel-bits');

/**
 * JavaScript pipeline
 */
bitRunner.register('default', function buildPipeline(task) {
  task
    .load('index.js')
    .then(babel)
});

Configure and run babel

The configuration settings are passed right to babel, so please refer to their docs for details on the available options.

var bitRunner = require('bit-runner');
var babel     = require('babel-bits');

/**
 * JavaScript pipeline
 */
bitRunner.register('default', function buildPipeline(task) {
  task
    .load('index.js')
    .then(babel.config({ast: false}))
});

Note on *generators

babel needs an external tool called regenerator in order to support generators. To bring generator support into your application, you can just load regenerator via script tag (or equivalent) and all generator code produced by babel will run just fine. The idea here is that the code produced by babel can find the method regeneratorRuntime whenever it is executed.

babel-bits's People

Contributors

miguelcastillo avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.