All Projects → jjordy → swr-devtools

jjordy / swr-devtools

Licence: MIT License
Devtools for SWR

Programming Languages

typescript
32286 projects
javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to swr-devtools

dirac-sample
An example integration of Dirac DevTools
Stars: ✭ 17 (+0%)
Mutual labels:  devtools
sapling
Sapling - A convenient way to traverse your React app in VS Code
Stars: ✭ 440 (+2488.24%)
Mutual labels:  devtools
pub-apis
Find public APIs, powered by api(dot)publicapis(dot)org
Stars: ✭ 24 (+41.18%)
Mutual labels:  swr
nanobox-rails
Quickly set up a Ruby on Rails app on Nanobox, the ideal platform for developers. With Nanobox, Rails app developers can set up instant, isolated development environments that can be shared among team members. Rails apps created using Nanobox can be automatically deployed to AWS, Azure, Google Cloud, and other cloud hosts without the need for de…
Stars: ✭ 19 (+11.76%)
Mutual labels:  devtools
cargo-testify
Watches changes in a rust project, runs test and shows friendly notification
Stars: ✭ 76 (+347.06%)
Mutual labels:  devtools
near-cli
General purpose command line tools for interacting with NEAR Protocol
Stars: ✭ 130 (+664.71%)
Mutual labels:  devtools
flip
Simple, lightweight, virtual IP management utility for moving IPs around nodes in response to cluster events.
Stars: ✭ 23 (+35.29%)
Mutual labels:  devtools
compose-watcher
Watch volumes and restart services in docker compose
Stars: ✭ 27 (+58.82%)
Mutual labels:  devtools
InAppDevTools
Android library with a collection of tools for debugging, inspecting and reporting from within your own app
Stars: ✭ 26 (+52.94%)
Mutual labels:  devtools
dart-redux-remote-devtools
Remote Devtools for Dart & Flutter
Stars: ✭ 50 (+194.12%)
Mutual labels:  devtools
portal
An api-driven, in-kernel layer 2/3 load balancer.
Stars: ✭ 101 (+494.12%)
Mutual labels:  devtools
debug.js
Debugger of JavaScript, by JavaScript, for JavaScript
Stars: ✭ 19 (+11.76%)
Mutual labels:  devtools
urql-devtools-exchange
The exchange for usage with Urql Devtools
Stars: ✭ 35 (+105.88%)
Mutual labels:  devtools
sidekick
A simple app to make Flutter development more delightful
Stars: ✭ 860 (+4958.82%)
Mutual labels:  devtools
laziness
Laziness is a set of tools for a better developer experience.
Stars: ✭ 18 (+5.88%)
Mutual labels:  devtools
devtools-tips
A collection of useful cross-browser DevTools tips
Stars: ✭ 81 (+376.47%)
Mutual labels:  devtools
badgee
Browser Console Improved
Stars: ✭ 26 (+52.94%)
Mutual labels:  devtools
page-walker
Chrome DevTools automation for desktop and mobile devices
Stars: ✭ 18 (+5.88%)
Mutual labels:  devtools
ReSwiftMonitor
ReSwift+redeux dev tools
Stars: ✭ 13 (-23.53%)
Mutual labels:  devtools
benjamincarlson.io
My personal website built with Next.js, Chakra UI, Firebase, and next-mdx-remeote.
Stars: ✭ 102 (+500%)
Mutual labels:  swr

SWR Devtools

Devtools for swr

Table of Contents

Live Demo

Edit swr-devtools (forked)

Install

NPM

npm install @jjordy/swr-devtools

Yarn

yarn add @jjordy/swr-devtools

Usage

swr - 1.0.0 is required at minimum .

Import SWRDevtools and our custom devtools cache and use like below. Custom cache is required > 1.0 swr to re-implement subscribe behavior which swr devtools relys on. The SWRConfig with custom devtools cache should be above any request using swr.

import { SWRConfig } from "swr";
import SWRDevtools from "@jjordy/swr-devtools";

export default function App({ Component, pageProps }) {
  return (
    <SWRDevtools>
      <Component {...pageProps} />
    </SWRDevtools>
  );
}

Props

Name Type Required Default
CustomOpenComponent React.ReactNode no
debug boolean no
position string: "right","left" no right

Maintainers

  • Jordan Addison

License

The MIT License (MIT)

Copyright (c) 2021 Jordan Addison

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].