uhjish / ts-wordsearch

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

webpack/react-starter

This repo began as a GitHub fork of webpack/react-starter.

It is a boilerplate for quickly starting React/Webpack/MaterialUI projects. It features lightning fast development ala live reload.

The main differences from the original repo are:

  • Data layer has been stripped out (not needed for static sites).
  • Integrated Material UI (callemall/material-ui).
  • Created a basic Material UI project with site navigation and a couple of sample pages.

Installation

Just clone this repo and change the origin git remote.

npm install

Hot Module Replacement development server

# start the webpack-dev-server in HMR mode
npm run hot-dev-server
# wait for the first compilation

# in another terminal/console
# start the node.js server in development mode
npm run start-dev

# open this url in your browser
http://localhost:8080/

Production compilation and server

# build the client bundle and the prerendering bundle
npm run build

# start the node.js server in production mode
npm run start

# open this url in your browser
http://localhost:8080/

About

License:Other


Languages

Language:JavaScript 94.6%Language:CSS 4.3%Language:HTML 1.1%