Skip to content

Instantly share code, notes, and snippets.

@edgar-maciel
Forked from bdchauvette/.babelrc
Created June 10, 2016 10:12
Show Gist options
  • Save edgar-maciel/7d85e7b486c3afc83a37e555ace7e7dd to your computer and use it in GitHub Desktop.
Save edgar-maciel/7d85e7b486c3afc83a37e555ace7e7dd to your computer and use it in GitHub Desktop.
Minimal babel boilerplate
{
"presets": [ "es2015" ]
}
const express = require('express');
const app = express();
const port = 3000;
app.get('/', (req, res) => {
res.send('Hello World!');
});
app.listen(port, () => {
console.log(`Example app listening on port ${port}!`);
});
{
"dependencies": {
"babel": "^6.5.2",
"babel-preset-es2015": "^6.9.0",
"babel-register": "^6.9.0",
"express": "^4.13.4"
}
}
require('babel-register');
require('./app');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment