npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

tauri-plugin-nostrnative

v0.1.5

Published

Nostr native capabilities for Tauri.

Readme

tauri-plugin-nostrnative

A modular, high-performance Nostr library and Tauri plugin for Rust and JavaScript. Designed to be clean, easy to integrate, and highly customizable through feature flags.

Features

  • Modular Design: Only include the components you need (Calendar, Bookmarks, Blossom, etc.).
  • Tauri Integration: First-class support for Tauri v2 with a seamless plugin system and typed frontend bindings.
  • Async-First: Built on tokio and nostr-sdk for efficient network operations.
  • Comprehensive NIP Support: Includes implementations for NIP-01, NIP-44 (Encryption), NIP-46 (Nostr Connect), NIP-51 (Bookmarks), NIP-52 (Calendar), and more.

Installation

Rust (Backend)

Add tauri-plugin-nostrnative to your src-tauri/Cargo.toml:

[dependencies]
# Use specific features to keep your binary small
tauri-plugin-nostrnative = { path = "../../nostrnative", features = ["calendar", "bookmarks", "tauri-plugin"] }

# Or enable everything
# tauri-plugin-nostrnative = { path = "../../nostrnative", features = ["full", "tauri-plugin"] }

JavaScript (Frontend)

Install the plugin bindings in your Tauri app's frontend directory:

npm install tauri-plugin-nostrnative

Setup in Tauri

1. Register the Plugin

In your src-tauri/src/lib.rs (or main.rs), initialize the plugin:

pub fn run() {
    tauri::Builder::default()
        .plugin(tauri_plugin_nostrnative::init()) // Initialize the plugin
        .run(tauri::generate_context!())
        .expect("error while running tauri application");
}

2. Use the JavaScript API

Import the typed bindings in your frontend code:

import * as nostr from 'tauri-plugin-nostrnative';

// Examples
const nsec = await nostr.generateNewNsec();
const pubkey = await nostr.parsePubkey(somePubkey);

const events = await nostr.fetchCalendarEvents(pubkey, ["wss://relay.damus.io"], {
  rangeStart: Math.floor(Date.now() / 1000)
});

Available Features

| Feature | Description | | -------------- | ----------------------------------------------------------- | | keys | Basic key management (generate, parse, verify). | | calendar | Calendar events (NIP-52) and RSVPs. | | profile | User profiles (NIP-01) and contact lists (NIP-02). | | messages | Direct messages (NIP-44). | | bookmarks | Public and private bookmarks (NIP-51). | | blossom | Blob Storage Server Operations (mirror, upload, get). | | chat | Advanced chat functionality with PNS key derivation. | | tauri-plugin | Exports all enabled features as Tauri commands. | | full | Enables all functional features (excluding tauri-plugin). |

Standalone Library Usage

You can also use the core logic directly in any Rust project:

use tauri_plugin_nostrnative::calendar::fetch_calendar_events_core;

#[tokio::main]
async fn main() {
    let relays = vec!["wss://relay.damus.io".to_string()];
    let events = fetch_calendar_events_core(
        "your_pubkey",
        None, // nsec
        &relays,
        None, // start
        None, // end
        None, // authors
        None  // client_nsec
    ).await;

    println!("Fetched events: {:?}", events);
}

Permissions

This plugin includes a set of default permissions. Check the permissions/ directory for details on how to configure access to specific Nostr commands in your Tauri application.