Skip to content
This repository has been archived by the owner on Jan 19, 2018. It is now read-only.

babel/babel-connect

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

42 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

babel-connect

Babel connect plugin

Installation

$ npm install babel-connect

Usage

var babelMiddleware = require("babel-connect");

app.use(babelMiddleware({
  options: {
    // options to use when transforming files
  },
  src: "assets",
  dest: "cache",
  ignore: /node_modules/
}));

app.use(connect.static("cache"));