Setting up a Server and Making React Full Stack#
Setting up the Server#
npm init
Complete the prompts
package.json
is created
Installing the Server#
npm install --save httpster
Httpster is a lightweight server
Installing React Tools#
npm install --save react-tools
This adds to package.json
automatically
Compile JSX#
jsx /js build/
Start the Server#
npm start