Template for creating react-sass frontend web applications. Note: This was built using webpack manually, there may still be some tweaks to configuration required.
PA C:\> git clone https://github.com/glitchy-sage/react-css-blueprint.git APP_NAME
- npm install - Installs dependencies.
PS C:\react> npm install
- Start Commands
- npm start - Runs react server on localhost:3000, then opens browser for viewing.
PS C:\react> npm start
- npm run start:headless - Runs react server on localhost:3000, this does not open a browser for your viewing.
PS C:\react> npm run start:headless
- Build Commands
- npm run build - Build's react files into static files and places into './build' directory. Note: Configuration for this is done via WebPack.
PS C:\react> npm run build