{"id":27915224,"url":"https://github.com/damus-io/notedeck","last_synced_at":"2025-05-06T15:37:58.124Z","repository":{"id":179199488,"uuid":"663120447","full_name":"damus-io/notedeck","owner":"damus-io","description":"The nostr browser","archived":false,"fork":false,"pushed_at":"2025-04-29T23:42:42.000Z","size":24295,"stargazers_count":216,"open_issues_count":273,"forks_count":35,"subscribers_count":12,"default_branch":"master","last_synced_at":"2025-04-30T00:28:32.045Z","etag":null,"topics":["freedom","nostr","nwc","rust"],"latest_commit_sha":null,"homepage":"","language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/damus-io.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":"SECURITY.md","support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2023-07-06T15:39:47.000Z","updated_at":"2025-04-28T19:27:57.000Z","dependencies_parsed_at":"2023-11-27T01:32:49.889Z","dependency_job_id":"963bab21-b6e6-48cc-ab5c-bb8264b38edc","html_url":"https://github.com/damus-io/notedeck","commit_stats":null,"previous_names":["damus-io/notedeck"],"tags_count":2,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/damus-io%2Fnotedeck","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/damus-io%2Fnotedeck/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/damus-io%2Fnotedeck/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/damus-io%2Fnotedeck/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/damus-io","download_url":"https://codeload.github.com/damus-io/notedeck/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":252713598,"owners_count":21792510,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["freedom","nostr","nwc","rust"],"created_at":"2025-05-06T15:37:57.193Z","updated_at":"2025-05-06T15:37:58.119Z","avatar_url":"https://github.com/damus-io.png","language":"Rust","funding_links":[],"categories":["Clients"],"sub_categories":["Other"],"readme":"# Notedeck\n\n[![CI](https://github.com/damus-io/notedeck/actions/workflows/rust.yml/badge.svg)](https://github.com/damus-io/notedeck/actions/workflows/rust.yml)\n\nA modern, multiplatform Nostr client built with Rust. Notedeck provides a feature-rich experience for interacting with the Nostr protocol on both desktop and Android platforms.\n\n\u003cp align=\"center\"\u003e\n  \u003cimg src=\"https://cdn.jb55.com/s/6130555f03db55b2.png\" alt=\"Notedeck Desktop Screenshot\" width=\"700\"\u003e\n\u003c/p\u003e\n\n## ✨ Features\n\n- **Multi-column Layout**: TweetDeck-style interface for viewing different Nostr content\n- **Dave AI Assistant**: AI-powered assistant that can search and analyze Nostr content\n- **Profile Management**: View and edit Nostr profiles\n- **Media Support**: View and upload images with GIF support\n- **Lightning Integration**: Zap (tip) content creators with Bitcoin Lightning\n- **Cross-platform**: Works on desktop (Linux, macOS, Windows) and Android\n\n## 📱 Mobile Support\n\nNotedeck runs smoothly on Android devices with a responsive interface:\n\n\u003cp align=\"center\"\u003e\n  \u003cimg src=\"https://cdn.jb55.com/s/bebeeadf7001fae1.png\" alt=\"Notedeck Android Screenshot\" height=\"500px\"\u003e\n\u003c/p\u003e\n\n## 🏗️ Project Structure\n\n```\nnotedeck\n├── crates\n│   ├── notedeck           - Core library with shared functionality\n│   ├── notedeck_chrome    - UI container and navigation framework\n│   ├── notedeck_columns   - TweetDeck-style column interface\n│   ├── notedeck_dave      - AI assistant for Nostr\n│   ├── notedeck_ui        - Shared UI components\n│   └── tokenator          - String token parsing library\n```\n\n## 🚀 Getting Started\n\n### Desktop\n\nTo run on desktop platforms:\n\n```bash\n# Development build\ncargo run -- --debug\n\n# Release build\ncargo run --release\n```\n\n### Android\n\nFor Android devices:\n\n```bash\n# Install required target\nrustup target add aarch64-linux-android\n\n# Build and install on connected device\ncargo apk run --release -p notedeck_chrome\n```\n\n### Android Emulator\n\n1. Install [Android Studio](https://developer.android.com/studio)\n2. Open 'Device Manager' and create a device with API level `34` and ABI `arm64-v8a`\n3. Start the emulator\n4. Run: `cargo apk run --release -p notedeck_chrome`\n\n## 🧪 Development\n\n### Android Configuration\n\nCustomize Android views for testing:\n\n1. Copy `example-android-config.json` to `android-config.json`\n2. Run `make push-android-config` to deploy to your device\n\n### Setting Up Developer Environment\n\n```bash\n./scripts/dev_setup.sh\n```\n\nThis adds pre-commit hooks for proper code formatting.\n\n## 📚 Documentation\n\nDetailed developer documentation is available in each crate:\n\n- [Notedeck Core](./crates/notedeck/DEVELOPER.md)\n- [Notedeck Chrome](./crates/notedeck_chrome/DEVELOPER.md)\n- [Notedeck Columns](./crates/notedeck_columns/DEVELOPER.md)\n- [Dave AI Assistant](./crates/notedeck_dave/docs/README.md)\n- [UI Components](./crates/notedeck_ui/docs/components.md)\n\n## 🔄 Release Status\n\nNotedeck is currently in **ALPHA** status. For the latest changes, see the [CHANGELOG](./CHANGELOG.md).\n\n## 🤝 Contributing\n\nContributions are welcome! Please check the developer documentation and follow these guidelines:\n\n1. Fork the repository\n2. Create a feature branch (`git checkout -b feature/amazing-feature`)\n3. Commit your changes (`git commit -m 'Add amazing feature'`)\n4. Push to the branch (`git push origin feature/amazing-feature`)\n5. Open a Pull Request\n\n## 🔒 Security\n\nFor security issues, please refer to our [Security Policy](./SECURITY.md).\n\n## 📄 License\n\nThis project is licensed under the GPL - see license information in individual crates.\n\n## 👥 Authors\n\n- William Casarin \u003cjb55@jb55.com\u003e\n- kernelkind \u003ckernelkind@gmail.com\u003e\n- And [contributors](https://github.com/damus-io/notedeck/graphs/contributors)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdamus-io%2Fnotedeck","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdamus-io%2Fnotedeck","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdamus-io%2Fnotedeck/lists"}