
Security News
PEP 810 Proposes Explicit Lazy Imports for Python 3.15
An opt-in lazy import keyword aims to speed up Python startups, especially CLIs, without the ecosystem-wide risks that sank PEP 690.
React Hooks for GunDB
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">{children}</div>
</GunProvider>
);
};
option | default | Description |
---|---|---|
peerUrls | - | String array of urls for each. peer |
connectOnMount? | false | Automatically call the connect function when the provider is mounted. |
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>
);
};
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>
);
};
option | default | Description |
---|---|---|
key | - | Key for property to listen to. |
initialValue? | - | Inital state value. If not value is passed, a generic can be added. |
FAQs
React Hooks for GunDB
We found that use-gun demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
An opt-in lazy import keyword aims to speed up Python startups, especially CLIs, without the ecosystem-wide risks that sank PEP 690.
Security News
Socket CEO Feross Aboukhadijeh discusses the recent npm supply chain attacks on PodRocket, covering novel attack vectors and how developers can protect themselves.
Security News
Maintainers back GitHub’s npm security overhaul but raise concerns about CI/CD workflows, enterprise support, and token management.