0.0.5 • Published 7 years ago

iceflow-environment v0.0.5

Weekly downloads
2
License
ISC
Repository
github
Last release
7 years ago

Iceflow Environment

This module uses babel on the node end to enable features not currently available such as imports/exports as well as parses react. So far I've found performance to be extremely fast. Be sure to require this very early if not first in your application.

npm install iceflow-environment --save

###Options

  • ignore Array an array of regular expressions used to determine what babel ignores, you pretty much always want some variant of /node_modules/.

###Example

require('iceflow-environment').server.install({
  ignore: [/node_modules\/(?!iceflow)/]
});