redux-devtools/packages/react-json-tree/examples
renovate[bot] 50f1a870ff
chore(deps): update dependency @types/node to v18 (#1261)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2022-10-28 11:27:59 -04:00
..
src fix(deps): update react (major) (#1165) 2022-06-06 16:22:05 +00:00
.eslintignore chore(react-json-tree): fix example build (#887) 2021-09-22 03:24:10 +00:00
.eslintrc.js chore(*): move devDependencies back to packages (#870) 2021-09-18 23:47:03 +00:00
CHANGELOG.md Version Packages (#1181) 2022-05-30 17:22:06 +00:00
index.html chore(react-json-tree): fix example build (#887) 2021-09-22 03:24:10 +00:00
LICENSE Merge react-json-tree package (#428) 2018-12-21 21:18:05 +02:00
package.json chore(deps): update dependency @types/node to v18 (#1261) 2022-10-28 11:27:59 -04:00
README.md Use prettier 2019-01-10 20:51:14 +02:00
tsconfig.json feat(redux-devtools): convert todomvc example to TypeScript (#618) 2020-08-27 22:01:17 -04:00
tsconfig.webpack.json Use types in tscnofig to explicitly define global types (#1045) 2022-01-22 21:51:27 +00:00
webpack.config.ts Type-check Webpack configs (#976) 2021-12-05 03:28:45 +00:00

react-hot-boilerplate

The minimal dev environment to enable live-editing React components.

Usage

npm install
npm start
open http://localhost:3000

Now edit src/App.js.
Your changes will appear without reloading the browser like in this video.

Linting

This boilerplate project includes React-friendly ESLint configuration.

npm run lint

Using 0.0.0.0 as Host

You may want to change the host in server.js and webpack.config.js from localhost to 0.0.0.0 to allow access from same WiFi network. This is not enabled by default because it is reported to cause problems on Windows. This may also be useful if you're using a VM.

Missing Features

This boilerplate is purposefully simple to show the minimal configuration for React Hot Loader. For a real project, you'll want to add a separate config for production with hot reloading disabled and minification enabled. You'll also want to add a router, styles and maybe combine dev server with an existing server. This is out of scope of this boilerplate, but you may want to look into other starter kits.

Dependencies

Resources