I am curious if there is a way to avoid a transpiler since I like to rely on node's native support for new syntax.
You can transpile only the JSX. You don't have to transpile any of the other syntax.
@nmehta6 It has the same API as React.createElement(). Just call h() instead. See here: https://facebook.github.io/react/docs/react-without-jsx.html
@xdave Thank you!
Most helpful comment
@xdave Thank you!