Skip to content

DevTools v1.0.0

Compare
Choose a tag to compare
@ghengeveld ghengeveld released this 11 Jul 13:47
· 500 commits to master since this release

This is the first release for React Async DevTools. Current features include:

  • Show all pending/fulfilled/rejected promises in all instances of React Async
  • Slow down requests by adding a virtual latency
  • Intercept new requests before they start, to manually continue later

Schermafbeelding 2019-04-13 om 15 45 29

React Async v7.0.0 is required to use the DevTools.

Usage example:

import DevTools from "react-async-devtools"

ReactDOM.render(
  <>
    <DevTools />
    <App />
  </>,
  document.getElementById("root")
)