Express API Framework
npm install @iredium/butterfly

Express API Framework
Make sure you have npx installed (npx is shipped by default since npm 5.2.0)
``bash`
npx create-butterfly-app
Or starting with npm v6.1 you can do:
`bash`
npm init butterfly-app
Or with yarn:
`bash`
yarn create butterfly-app
It's as simple as that!
`js
import Butterfly from '@iredium/butterfly'
import config from './config'
const butterfly = new Butterfly(config)
butterfly.boot()
// You can interact with the express app instance using butterfly.app
``