Skip to content

Latest commit

 

History

History
65 lines (46 loc) · 1.08 KB

README.md

File metadata and controls

65 lines (46 loc) · 1.08 KB

Deploy

React Tutorial

This is the React comment box example from the React tutorial.

To use

There are several simple server implementations included. They all serve static files from public/ and handle requests to /api/comments to fetch or add data. Start a server with one of the following:

Node

npm install
node server.js

Python

pip install -r requirements.txt
python server.py

Haskell

cabal sandbox init
cabal install --only-dependencies
ghc Server.hs
./Server

Ruby

ruby server.rb

PHP

php server.php

Go

go run server.go

Lua

go get github.com/xyproto/algernon
# or brew install algernon
algernon server.lua

And visit http://localhost:3000/. 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.,

PORT=3001 node server.js