Do I really need Babel or other transpilers to use ES6 with React?

user3463521 picture user3463521 · Jun 25, 2016 · Viewed 12.1k times · Source

Do I really need Babel or other transpilers to use ES6 in React?

I was looking at the chart https://kangax.github.io/compat-table/es6/

Seems like my current browser Chrome (latest stable version) supports almost all the ES6 features...

If I can use ES6 without Babel, how I should do it?

Answer

Kerumen picture Kerumen · Jun 25, 2016

If you want to:

You must use Babel to be sure that everyone will be able to run your code, else you can develop without it.