Skip to content

Instantly share code, notes, and snippets.

@thomasdavis
Created March 8, 2016 08:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save thomasdavis/ea205f0cdd7c87c7bbcb to your computer and use it in GitHub Desktop.
Save thomasdavis/ea205f0cdd7c87c7bbcb to your computer and use it in GitHub Desktop.
// boot.js
require('babel-core/register');
require('coffee-script/register');
module.exports = require('./app');
// app.js
import from 'foo';
import from 'bar';
// foo.js
console.log('simple');
// bar.coffee
more = require 'more'
// more.coffee
console.log 'not so simple'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment