Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/hzrd149/nostrudel
A sandbox for exploring nostr
https://github.com/hzrd149/nostrudel
nostr nostr-client
Last synced: 13 days ago
JSON representation
A sandbox for exploring nostr
- Host: GitHub
- URL: https://github.com/hzrd149/nostrudel
- Owner: hzrd149
- License: mit
- Created: 2022-12-23T20:20:42.000Z (almost 2 years ago)
- Default Branch: master
- Last Pushed: 2024-05-18T11:51:07.000Z (7 months ago)
- Last Synced: 2024-05-18T12:40:08.723Z (7 months ago)
- Topics: nostr, nostr-client
- Language: TypeScript
- Homepage: https://nostrudel.ninja/
- Size: 23 MB
- Stars: 104
- Watchers: 1
- Forks: 32
- Open Issues: 96
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
- awesome-nostr - noStrudel - hzrd149's personal nostr client. (Clients / Relay lists)
README
# noStrudel
> NOTE: This client is still in development and will have bugs
noStrudel is a web app for exploring the [nostr](https://github.com/nostr-protocol) protocol.
The goal of this project is to build a nostr client that lets a user explore the nostr protocol by showing as much information as possible and letting the user view the underlying events.
Live Instance: [nostrudel.ninja](https://nostrudel.ninja)
There are many features missing from this client and I wont get around to implementing everything. but if you like the client you are welcome to use it.
You can find more clients with more features on [nostrapps.com](https://www.nostrapps.com/) or in the [awesome-nostr](https://github.com/aljazceru/awesome-nostr) repo.
## Please don't trust my app with your nsec
While logging in with a secret key is supported. please don't. This is a web client, so there is always a chance of XXS attacks that could steal your secret key.
I would recommend you use a browser extension like [Alby](https://getalby.com/) or [Nos2x](https://github.com/fiatjaf/nos2x)
## Running with docker
```bash
docker run --rm -p 8080:80 ghcr.io/hzrd149/nostrudel:master
```## Docker compose and other services
noStrudels docker image has a few options for connecting to other services running locally
- `CACHE_RELAY`: if set the client will use the relay to cache all of its events instead of storing them in the browser cache
- `IMAGE_PROXY`: can be set to a local [imageproxy](https://github.com/willnorris/imageproxy) instance so the app can resize profile images
- `REQUEST_PROXY`: can be set to a local [cors-anywhere](https://github.com/Rob--W/cors-anywhere) instance so the app can proxy http request
- `PROXY_FIRST`: if this is set to `true` all http requests will go through the request proxy firstYou can find a full example of all these services in the [docker-compose.yaml](./docker-compose.yaml)
## Running locally
```bash
git clone [email protected]:hzrd149/nostrudel.git
cd nostrudel
pnpm install
pnpm run dev
```## Contributing
This is only a personal project, so if you open any PRs please keep them small. thanks