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 🙏

© 2025 – Pkg Stats / Ryan Hefner

@legit-sdk/create-next-starter

v0.1.4

Published

A starter template for Next.js with Legit SDK integration for local-first document editing and version control

Readme

Legit SDK React Starter

A starter template demonstrating how to use @legit-sdk/react for local-first document editing and version control in a Next.js application.

Features

  • Auto-initialization: Files are automatically created with initial content if they don't exist
  • Version history: View commit history with visual diffs
  • Commit checkout: Browse historical commits and view their content
  • Safe editing: Save button is disabled when viewing non-HEAD commits
  • Real-time sync: Changes are automatically synced via HEAD polling

Getting Started

Prerequisites

  • Node.js 18+
  • pnpm (or npm/yarn)

Installation

# Install dependencies
pnpm install

# Run development server
pnpm dev

Open http://localhost:3000 to see the demo.

How It Works

This starter demonstrates a simple document editor with version control:

  1. LegitProvider: Initializes the Legit FS instance and polls for HEAD changes
  2. useLegitFile: Hook that manages file content, history, and save operations
  3. Editor Component: Simple textarea with save button and history list

Key Implementation

import { LegitProvider, useLegitFile } from '@legit-sdk/react';

function Editor() {
  // Auto-create file with initial content if it doesn't exist
  const { content, setContent, history, getPastState } = useLegitFile(
    '/document.txt',
    { initialContent: 'This is a document that you can edit! 🖋️' }
  );

  // ... rest of component
}

Customization

Change the File Path

Edit FILE_PATH in app/page.tsx:

const FILE_PATH = '/your-file.txt';

Change Initial Content

Edit INITIAL_TEXT in app/page.tsx:

const INITIAL_TEXT = 'Your initial content here';

Manual File Creation

Remove initialContent option to handle file creation manually:

const { content, setContent } = useLegitFile('/document.txt');

Features Explained

Auto-initialization

When initialContent is provided, the hook automatically creates the file if it doesn't exist:

useLegitFile('/document.txt', { initialContent: 'Hello World' });

History & Checkout

  • Click any history item to view that commit's content
  • Active commit is highlighted
  • Save button is disabled when viewing non-HEAD commits

Sync Behavior

  • Content syncs automatically when HEAD changes
  • User edits are preserved (won't be overwritten by sync)
  • Save clears checkout state and returns to HEAD

Project Structure

app/
  page.tsx          # Main editor component
  layout.tsx        # Next.js layout
  globals.css       # Global styles
public/
  logo.svg          # Legit logo
  avatar.svg        # Avatar icon
  file.svg          # File icon

Learn More

Building Your Own Starter

  1. Copy this starter to your project
  2. Customize FILE_PATH and INITIAL_TEXT
  3. Modify the UI to match your needs
  4. Add more files with multiple useLegitFile hooks