Jonathan
Career / Engineering

Deploy ES6 Node app in Heroku

It's very easy but relatively tricky all you have to do is customize the heroku build process by addi...

Jonathan Atiene··1 min


It's very easy but relatively tricky all you have to do is customize the heroku build process by adding the following to your script in package.json

"script": {
  +"heroku-postbuild": "npm run build"
}

the command above should compile your ES6 app using babel read more here

to set up your node js app in ES6 you can read my previous post

#Career / Engineering