It is true that a transpiler is necessary. The reason is that the JSX code (and ES6) you write need to be transpiled to regular JavaScript code. The easiest and quickest way to get started is by using Create React App (github.com/facebook/create-react-app). When you get more advanced you could look into webpack which is a build tool that gives you more control in building the bundle. Good luck!