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

peaseernest

v0.0.1

Published

Universal bundler for BertUI ecosystem - powers bertui bunny bertuimarked

Readme

Ernest ⚡

##we are in extreeme beta version right now and only the ui part works i have finaly made it to work the script is similar with bertui build and dev server for now because gad damn it the shit is hard as f**ck but v0.0.1 of ernest bundler by ernest tech house is out Universal bundler for BertUI ecosystem - powers bertui bunny bertuimarked

Built with ❤️ by Ernest Tech House

Features

  • 🚀 Blazing fast - Uses Bun's native capabilities
  • 🎯 Zero config - Works out of the box
  • 🏝️ Server Islands - Static HTML extraction for instant loading
  • 📚 Markdown support - Built-in docs generator
  • ⚛️ React/JSX/TSX - Full React support
  • 🔥 HMR - Hot module replacement
  • 🎨 Beautiful output - ernest-logger v2 powered

Quick Start

Installation

# Install globally
bun add -g peaseernest

# Or in your project
bun add peaseernest

Usage

# UI Mode (React)
ernest dev --mode ui
ernest build --mode ui

# Docs Mode (Markdown)
ernest dev --mode docs
ernest build --mode docs

# Auto-detect mode
ernest dev
ernest build

Configuration

Create ernest.bundler.js in your project root:

export default {
  mode: 'ui', // 'ui' | 'docs' | 'fullstack'
  input: 'jsx', // 'jsx' | 'tsx' | 'md'
  entry: 'src',
  output: 'dist',
  serverIslands: true,
  minify: true,
  port: 3000
};

Project Structure

UI Mode (React)

src/
├── pages/
│   ├── index.jsx
│   └── about.jsx
├── components/
│   └── Button.jsx
├── styles/
│   └── app.css
└── images/
    └── logo.png

Docs Mode (Markdown)

docs/
├── getting-started.md
├── api/
│   └── reference.md
└── assets/
    └── diagram.png

Server Islands 🏝️

Add static content that renders at build time:

// pages/about.jsx
export const render = "server"; // 🏝️ This marks a Server Island

export default function About() {
  return (
    <div>
      <h1>About Us</h1>
      <p>This content is pre-rendered as static HTML!</p>
      <a href="/">Go home</a>
    </div>
  );
}

Rules for Server Islands:

  • ✅ Pure static JSX only
  • ❌ No React hooks (useState, useEffect, etc.)
  • ❌ No browser APIs (window, document, fetch)
  • ❌ No event handlers (onClick, onChange, etc.)
  • ❌ No Link component (use <a> tags instead)

Integration with BertUI

Ernest replaces BertUI's build system. Update your package.json:

{
  "scripts": {
    "dev": "ernest dev --mode ui",
    "build": "ernest build --mode ui"
  },
  "dependencies": {
    "ernest": "latest"
  }
}

Migration from BertUI

# In your BertUI project
bunx ernest migrate

This will:

  1. Add Ernest dependency
  2. Update package.json scripts
  3. Create ernest.bundler.js
  4. Preserve your existing config

Performance

| Task | Ernest | BertUI | Improvement | |------|--------|--------|-------------| | Dev server startup | <200ms | ~500ms | 2.5x faster | | Production build | <400ms | ~1000ms | 2.5x faster | | HMR update | <50ms | ~100ms | 2x faster | | Markdown compile | <10ms/file | ~50ms/file | 5x faster |

CLI Reference

Commands

  • ernest dev - Start development server
  • ernest build - Build for production
  • ernest init - Create ernest.bundler.js
  • ernest migrate - Migrate from BertUI
  • ernest --version - Show version
  • ernest --help - Show help

Options

  • --mode, -m - Project mode (ui, docs, fullstack)
  • --port, -p - Dev server port (default: 3000)
  • --output, -o - Output directory (default: dist)
  • --entry, -e - Entry directory (default: src)
  • --config, -c - Config file (default: ernest.bundler.js)

Community & Support

Join the Ernest Tech House community:

License

MIT © Ernest Tech House


Ernest - powers bertui bunny bertuimarked