This is the React comment box example from the React tutorial.
There were several simple server implementations included, but only node was left. It serves static files from public/
and handle requests to /api/comments
to fetch or add data. Start a server with:
npm install
node server.js
And visit http://localhost:3000/. Try opening multiple tabs!