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

satset-react

v0.5.3

Published

Fast fullstack React framework

Readme


✨ What is SatsetJS?

SatsetJS is a framework + build tool designed for developers who want to ship React apps fast without dealing with annoying setup.

It’s built to feel minimal, clean, and instant — powered by Esbuild for speed.


🔥 Key Features

🧠 Framework Features

  • Server Side Rendering (SSR)

  • Static Site Generation (SSG)

  • Incremental Static Regeneration (ISR)

  • File-based Routing

  • Built-in API Routes

  • Middleware Support

  • Automatic Code Splitting

  • SEO Friendly by Default

  • App Router (React Server Components)

⚡ Build Tool Features

  • 🚀 Extremely Fast Cold Server Start

  • Instant Hot Module Replacement (HMR)

  • 🧩 Esbuild Dev Server

  • 🏗️ Esbuild-based Production Build

  • 📦 Optimized Dependency Pre-bundling

  • 🟦 TypeScript + JSX Support

  • 🪶 Lightweight & Minimalist

  • 🔧 Flexible Configuration

  • 🌍 Framework Agnostic (for now: React only)


📦 Installation

Requires Node.js >= 18

bash
npm i -g satsetjs
or use npx:

bash
Copy code
npx satsetjs create my-app
🚀 Quick Start
Create a project:

bash
Copy code
satsetjs create my-app
cd my-app
Run dev server:

bash
Copy code
satsetjs dev
Build for production:

bash
Copy code
satsetjs build
Start production server:

bash
Copy code
satsetjs start

🗂️ Project Structure SatsetJS uses file-based routing, so your project stays simple:

my-app/
  src/
    page.tsx              → /
    about/
      page.tsx            → /about
    blog/
    [slug]/
      page.tsx          → /blog/:slug
    api/
      hello.ts              → /api/hello
  satset.config.ts
  package.json

🧭 Routing (File-based) Example: src/page.tsx

export default function Page() {
  return (
    <main>
      <h1>Welcome to SatsetJS ⚡</h1>
      <p>Ship fast. Stay sane.</p>
    </main>
  )
}

Dynamic routes: src/blog/[slug]/page.tsx → /blog/:slug

🧱 API Routes Example: src/api/route.ts

export async function GET() {
  return new Response(JSON.stringify({ message: "Hello from SatsetJS API ⚡" }), {
    headers: { "Content-Type": "application/json" },
  })
}

Then hit: GET /api/hello

🛡️ Middleware Example: src/middleware.ts

export function middleware(req: Request) {
  // example: add headers, auth, redirects, etc.
  return req
}

🧊 SSR / SSG / ISR (Concept) SatsetJS supports:

SSR for dynamic pages

SSG for fast static output

ISR to refresh static pages without rebuilding everything

Docs coming soon: https://satsetjs.dev/docs/rendering

⚙️ Configuration Create: satset.config.ts

import { defineConfig } from 'satset-react';

export default defineConfig({
  server: {
    host: true,
    port: 3000,
  },
  assets: {
    favicon: '/favicon.png',
  },
  resolve: {
    alias: {
      '@': './src',
    },
  },
});

✅ Why SatsetJS? Because you want:

Next-level speed ✅

Not a 300-file config tutorial ✅

Modern React routing + RSC support ✅

SEO-ready SSR/SSG/ISR ✅

Build tool included ✅

🧪 Scripts Common commands:

satsetjs dev      # start dev server
satsetjs build    # build production

🛣️ Roadmap React support

SSR / SSG / ISR

App Router (RSC)

Middleware

Built-in API routes

Plugin system

Framework-agnostic runtime (Vue/Svelte/etc)

Official adapters (Node, Bun, Deno)

Edge runtime support

🤝 Contributing Contributions are welcome.

Open an issue: https://github.com/satsetjs/satsetjs/issues

Submit a PR: https://github.com/satsetjs/satsetjs/pulls

⭐ Support the Project If SatsetJS helps you ship faster:

⭐ Star the repo

🐦 Share it

🧠 Contribute