Awesome
<div align="center"> <img src="./assets/imgs/logo/logo_android.png" alt="Nostrmo Logo" title="Nostrmo logo" width="80"/>Nowser
A secure nostr key management and signing app for iOS and Android that supports multiple authentication methods:
- NIP-07: Acts as a browser extension replacement for mobile, allowing you to securely sign into nostr web apps
- NIP-46: Functions as a remote signer (like a "bunker"), letting you keep your private keys on your phone while signing requests from your desktop
- NIP-55: Supports Android's native key management system for secure key storage (similar to Apple Keychain)
This app helps you manage your nostr identity securely across devices while maintaining control of your private keys. It's designed to be a mobile-first solution for the growing nostr ecosystem.
</div>Platforms
Platforms | NIP-07 | NIP-46 | NIP-55 |
---|---|---|---|
Android | √ | √ | √ |
IOS | √ | √ |
Downloads
Android: Downlaod From Release https://github.com/haorendashu/nowser/releases
IOS: Download from TestFlight https://testflight.apple.com/join/b4zVVxaM
Building from Source
Prerequisites
- Flutter SDK
- Android Studio (for Android builds)
- Xcode (for iOS builds)
- Git
Platform-Specific Notes
iOS/macOS Prerequisites
- Install CocoaPods if you haven't already:
sudo gem install cocoapods
- Install project CocoaPods:
cd ios # or 'cd macos' for macOS builds
pod install
- Open the workspace in Xcode:
open ios/Runner.xcworkspace # or 'open macos/Runner.xcworkspace' for macOS
- In Xcode:
- Select the Runner project in the navigator
- Select the Runner target
- Under Signing & Capabilities:
- Select your Team
- Update Bundle Identifier if needed
- If building for macOS, ensure the following capabilities are enabled:
- Outgoing Connections (Client)
- Incoming Connections (Server)
Web
flutter build web
- The web build will be available in
build/web
directory - You can serve it using any web server
- For local testing, you can use Python's built-in server:
cd build/web
python -m http.server 8000
Desktop Builds
- For Windows, you need Visual Studio with "Desktop development with C++" workload
- For Linux, you need the following dependencies:
sudo apt-get install clang cmake ninja-build pkg-config libgtk-3-dev liblzma-dev
Build Instructions
- Clone the repository with submodules:
git clone --recursive https://github.com/haorendashu/nowser.git
cd nowser
- If you already cloned without submodules, initialize and update them:
git submodule init
git submodule update
- Install Flutter dependencies:
flutter pub get
- Build the app:
- For Android:
flutter build apk
- For iOS:
flutter build ios