JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 5
  • Score
    100M100P100Q82389F
  • License MIT

Package Exports

  • @restate/dev-tools
  • @restate/dev-tools/build/cjs/index.js
  • @restate/dev-tools/build/index.js

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@restate/dev-tools) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

RESTATE DEV TOOLS

Restate is a predictable, easy to use, easy to integrate, typesafe state container for React.

Restate uses the excellent ReduxDevTools to provide power-ups for your development workflow.

DevTools screenshot

Installation

Go and get the ReduxDevTools for your browser:

Then install the @restate/dev-tools

yarn add @restate/dev-tools

Usage

import { connectDevTools } from "@restate/dev-tools"

const store = createStore({
  state: {
    name: "John Snow",
    age: 32
  },
  options: {
    storeName: "MY APP STORE" // <-- will show up in the instance selector
  }
})

connectDevTools(store)