Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/t4t5/nostr-react

React Hooks for Nostr ðŸĶĪ
https://github.com/t4t5/nostr-react

hooks nostr react

Last synced: 9 days ago
JSON representation

React Hooks for Nostr ðŸĶĪ

Awesome Lists containing this project

README

        


nostr-react



React Hooks for Nostr âœĻ

## Installation

```
npm install nostr-react
```

## Example usage:

Wrap your app in the NostrProvider:

```tsx
import { NostrProvider } from "nostr-react";

const relayUrls = [
"wss://nostr-pub.wellorder.net",
"wss://relay.nostr.ch",
];

function MyApp() {
return (



);
};
```

You can now use the `useNostr` and `useNostrEvents` hooks in your components!

**Fetching all `text_note` events starting now:**

```tsx
import { useRef } from "react";
import { useNostrEvents, dateToUnix } from "nostr-react";

const GlobalFeed = () => {
const now = useRef(new Date()); // Make sure current time isn't re-rendered

const { events } = useNostrEvents({
filter: {
since: dateToUnix(now.current), // all new events from now
kinds: [1],
},
});

return (
<>
{events.map((event) => (

{event.pubkey} posted: {event.content}


))}
>
);
};
```

**Fetching all `text_note` events from a specific user, since the beginning of time:**

```tsx
import { useNostrEvents } from "nostr-react";

const ProfileFeed = () => {
const { events } = useNostrEvents({
filter: {
authors: [
"9c2a6495b4e3de93f3e1cc254abe4078e17c64e5771abc676a5e205b62b1286c",
],
since: 0,
kinds: [1],
},
});

return (
<>
{events.map((event) => (

{event.pubkey} posted: {event.content}


))}
>
);
};
```

**Fetching user profiles**

Use the `useProfile` hook to render user profiles. You can use this in multiple components at once (for example, rendering a name and avatar for each message in a chat), the hook will automatically use *batching* to prevent errors where a client sends too many requests at once. 🎉

```tsx
import { useProfile } from "nostr-react";

const Profile = () => {
const { data: userData } = useProfile({
pubkey,
});

return (
<>

Name: {userData?.name}


Public key: {userData?.npub}


Picture URL: {userData?.picture}


>
)
}
```

**Post a message:**

```tsx
import { useNostr, dateToUnix } from "nostr-react";

import {
type Event as NostrEvent,
getEventHash,
getPublicKey,
signEvent,
} from "nostr-tools";

export default function PostButton() {
const { publish } = useNostr();

const onPost = async () => {
const privKey = prompt("Paste your private key:");

if (!privKey) {
alert("no private key provided");
return;
}

const message = prompt("Enter the message you want to send:");

if (!message) {
alert("no message provided");
return;
}

const event: NostrEvent = {
content: message,
kind: 1,
tags: [],
created_at: dateToUnix(),
pubkey: getPublicKey(privKey),
};

event.id = getEventHash(event);
event.sig = signEvent(event, privKey);

publish(event);
};

return (
Post a message!
);
}
```