A Nostr client that makes relays a first-class concept
Go to file
2022-11-26 21:47:56 -08:00
public First commit 2022-11-22 17:28:33 -08:00
src Load account during initial setup 2022-11-26 21:38:25 -08:00
.ackrc First commit 2022-11-22 17:28:33 -08:00
.eslintrc.cjs First commit 2022-11-22 17:28:33 -08:00
.fdignore First commit 2022-11-22 17:28:33 -08:00
.gitignore Load account during initial setup 2022-11-26 21:38:25 -08:00
CNAME Add CNAME file 2022-11-26 21:47:56 -08:00
index.html First commit 2022-11-22 17:28:33 -08:00
jsconfig.json First commit 2022-11-22 17:28:33 -08:00
package-lock.json Things are basically working, profile update done 2022-11-23 19:54:22 -08:00
package.json Things are basically working, profile update done 2022-11-23 19:54:22 -08:00
postcss.config.cjs First commit 2022-11-22 17:28:33 -08:00
README.md Add CNAME file 2022-11-26 21:47:56 -08:00
tailwind.config.cjs Add chat 2022-11-24 12:36:14 -08:00
vite.config.js Load account during initial setup 2022-11-26 21:38:25 -08:00

Bugs

  • Pagination
  • Improve data loading. Ditch nostr-tools, or use eose

Features

  • Chat
  • Threads/social
  • Followers
  • Server discovery
  • Favorite chat rooms

Nostr implementation comments

  • It's impossible to get deletes for an event's replies/mentions in one query, since deletes can't tag anything other than what is to be deleted.
  • Recursive queries are really painful, e.g. to get all notes for an account, you need to 1. get the account's notes, then get everything with those notes in their tags, then get deletions for those.
  • The limit of 3 channels makes things difficult. I want to show a modal without losing all the state in the background. I am reserving one channel for one-off recursive queries.
  • Why no spaces in names? Seems user hostile