Giter Club home page Giter Club logo

use-gun's Introduction

use-gun

CI Status npm version

React Hooks for GunDB

GunProvider

A React provider which will allow access to the connect, disconnect functions, and the current gun instance using the "useGun" hook.

import React, { FC } from "react";
import { GunProvider } from "use-gun";

const App: FC = ({ children }) => {
    const peers = ["https://events.mydomain.com"];

    return (
        <GunProvider peerUrls={peers}>
            <div className="my-app"><MyComponent /></div>
        </GunProvider>
    );
};

Options:

option default Description
peerUrls - String array of urls for each. peer
connectOnMount? false Automatically call the connect function when the provider is mounted.

useGun

A React context for getting the connect, disconnect functions, and the current gun instance. Will only work if your app is wrapped in the GunProvider.

import React, { FC, useEffect } from "react";
import { useGun } from "use-gun";

const MyComponent: FC = () => {
    const { gun, connect, disconnect } = useGun();

    useEffect(() => {
        connect();
    }, []);

    const onButtonClick = () => {
        disconnect();
    };

    return (
        <div className="my-component">
            <button onClick={onButtonClick}>Disconnect Gun</button>
        </div>
    );
};

useGunWatch

A React hook for listening to changes on a property and providing the ability to unsubscribe.

import React, { FC } from "react";
import { useGunWatch } from "use-gun";

const MyComponent: FC = () => {
    const [value, unsubscribe] = useGunWatch("my-key", 0);
    const [otherValue, unsubscribeOtherValue] = useGunWatch<string>("my-other-key");

    const onButtonClick = () => {
        unsubscribe();
    };

    return (
        <div className="my-component">
            <strong>{value}</strong>
            <button onClick={onButtonClick}>Unsubscribe Key</button>
        </div>
    );
};

Options:

option default Description
key - Key for property to listen to.
initialValue? - Inital state value. If not value is passed, a generic can be added.

use-gun's People

Contributors

clarktozer avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.