You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
451 B
JavaScript
16 lines
451 B
JavaScript
6 years ago
|
var budo = require('budo')
|
||
|
var babelify = require('babelify')
|
||
|
|
||
|
budo('app.js', {
|
||
|
live: true, // setup live reload
|
||
|
port: 3000, // use this port
|
||
|
browserify: {
|
||
|
transform: babelify // ES6
|
||
|
}
|
||
|
}).on('connect', function (ev) {
|
||
|
console.log('Server running on %s', ev.uri)
|
||
|
console.log('LiveReload running on port %s', ev.livePort)
|
||
|
}).on('update', function (buffer) {
|
||
|
console.log('bundle - %d bytes', buffer.length)
|
||
|
})
|