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?
If you want to:
modules
(with require()
or import ...
)JSX
You must use Babel to be sure that everyone will be able to run your code, else you can develop without it.