UNPKG

1.18 kBMarkdownView Raw
1# Hops
2
3[![npm](https://img.shields.io/npm/v/hops.svg)](https://www.npmjs.com/package/hops)
4
5**Please see the [main Hops Readme](https://github.com/xing/hops/blob/master/README.md) for general information and a Getting Started Guide.**
6
7Hops is everything you need to develop and deploy a production grade universal web application with [React](https://facebook.github.io/react/). It provides both a **universal runtime** as well as the necessary **build tooling**.
8
9## Quick start
10
11To create a new Hops application run the following in a terminal:
12
13```shell
14npx create-hops-app my-hops-app
15```
16
17_Note: If you prefer to use `yarn`, you can substitute the above command with `yarn create hops-app my-hops-app`._
18
19Then move into the newly created directory:
20
21```shell
22cd my-hops-app
23```
24
25And start the development server:
26
27```shell
28npm start
29```
30
31This will start Hops in development mode. Visit [http://localhost:8080](http://localhost:8080) to see your app in the browser and make some changes to the code in your editor to see it live-reloading.
32
33Check out the [main Hops Readme](https://github.com/xing/hops/blob/master/README.md) for more detailed explanations and documentation.