--- id: getting-started title: Getting Started next: tutorial.html redirect_from: "docs/index.html" --- ## JSFiddle The easiest way to start hacking on React is using the following JSFiddle Hello World examples: * **[React JSFiddle](https://jsfiddle.net/reactjs/69z2wepo/)** * [React JSFiddle without JSX](https://jsfiddle.net/reactjs/5vjqabv3/) ## Starter Pack If you're just getting started, you can download the starter kit. The starter kit includes prebuilt copies of React and React DOM for the browser, as well as a collection of usage examples to help you get started.
Download Starter Kit {{site.react_version}}
In the root directory of the starter kit, create a `helloworld.html` with the following contents. ```html Hello React!
``` The XML syntax inside of JavaScript is called JSX; check out the [JSX syntax](/react/docs/jsx-in-depth.html) to learn more about it. In order to translate it to vanilla JavaScript we use ` ``` Note that some browsers (Chrome, e.g.) will fail to load the file unless it's served via HTTP. ## Using React with npm or Bower You can also use React with package managers like npm or Bower. You can learn more in our [Package Managers](/react/docs/package-management.html) section. ## Next Steps Check out [the tutorial](/react/docs/tutorial.html) and the other examples in the starter kit's `examples` directory to learn more. Good luck, and welcome!