Getting Started with React Server
The easiest way to get started is with our yeoman generator. Open your terminal and type:
# install yeoman
npm install -g yo
# install the react-server generator
npm install -g generator-react-server
# make a new react-server project in the CURRENT directory
yo react-server
# run the new app
npm run start
# go to http://localhost:3000
That hooks you up with react-server-cli, which will get you up and running right away.