RickWong / babel-plugin-hello-world

Extended plugin sample for Babel

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

babel-plugin-hello-world

Extended plugin sample for Babel.

Installation

$ npm install babel-plugin-hello-world

Usage

Via .babelrc (Recommended)

.babelrc

{
  "plugins": ["hello-world"]
}

Via CLI

$ babel --plugins hello-world script.js

Via Node API

require('babel').transform('code', {
  plugins: ['hello-world']
});

About

Extended plugin sample for Babel


Languages

Language:JavaScript 100.0%