# react-intro : Learning ReactJS

This is the React comment box example from [the React tutorial](http://facebook.github.io/react/docs/tutorial.html).

## Installing

```sh
go run server.go
```

And visit <http://vm:3000/> assuming you host is called `vm`. Try opening multiple tabs!

## Changing the port

You can change the port number by setting the `$PORT` environment variable before invoking any of the scripts above, e.g.,

```sh
PORT=3001 node server.js
```

## Parts taken from:

- https://facebook.github.io/react/docs/tutorial.html
- http://jslog.com/2014/10/02/react-with-webpack-part-1/ : much more useful than
  ReactJS "Getting started".