Reputation: 77
I'm trying to deploy a simple NodeJs Express application to Heroku. It's in ES6. I've found a few articles but they were outdated claiming that I'd need babel added to my dependencies. Therefore, what mandatory dependencies do I have to have these days in order to run an minimal ES6 application on Heroku?
Upvotes: 2
Views: 1745
Reputation: 2856
The ES6 features for any version of Node.
The default Node versions used in Heroku.
How to configure the Node version for your app on Heroku.
Upvotes: 2