You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is the React comment box example from [the React tutorial](http://facebook.github.io/react/docs/tutorial.html).
4
4
5
5
## To use
6
6
7
-
```
7
+
There are several simple server implementations included. They all serve static files from `public/` and handle requests to `comments.json` to fetch or add data. Start a server with one of the following:
8
+
9
+
### Node
10
+
11
+
```sh
8
12
npm install
9
13
node server.js
10
14
```
11
15
12
-
And visit http://localhost:3000/. Try opening multiple tabs!
16
+
### Python
17
+
18
+
```sh
19
+
python server.py
20
+
```
21
+
22
+
### Ruby
23
+
```sh
24
+
ruby server.rb
25
+
```
26
+
27
+
And visit <http://localhost:3000/>. Try opening multiple tabs!
0 commit comments