@stordco/msw-toolbar
TypeScript icon, indicating that this package has built-in type declarations

0.2.3 • Public • Published

MSW Toolbar

A simple utility to make your MSW experience a little bit better.

Requirements

Usage

There are two primary ways to use this component:

  1. As a wrapper around your entire app

    1. When you structure things like the below, you guarantee that all requests will be intercepted because children will not be rendered until the worker has successfully started.
    <MSWToolbar {...props}>
      <YourApp />
    </MSWToolbar>
  2. As a regular component in the tree

    1. When you do this, all requests should be intercepted, but it's not guaranteed because there can be timing issues with the service worker registration.
    <YourApp>
      <MSWToolbar {...props} />
      <Header />
      <Content />
      <Footer />
    </YourApp>

Readme

Keywords

none

Package Sidebar

Install

npm i @stordco/msw-toolbar

Weekly Downloads

230

Version

0.2.3

License

MIT

Unpacked Size

307 kB

Total Files

27

Last publish

Collaborators

  • msutkowski
  • marceloalves