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

@getstrata/bootstrap

v0.2.51

Published

Strata application bootstrap — HttpKernel, DI, web session helpers

Downloads

8,179

Readme

@getstrata/bootstrap

Application bootstrap for Strata sibling apps: HttpKernel, service container, and web utilities.

Install

bun add @getstrata/bootstrap @getstrata/core

Web utilities (getstrata-style apps)

import {
  CookieSessionStore,
  createCsrfProtection,
  createWebServer,
  parseFormBody,
  slugify,
} from "@getstrata/bootstrap";

CookieSessionStore reads optional is_admin from the user row for global admin routing via wrapWebGlobalAdmin.

HttpKernel (API / module apps)

import { createHttpKernel, createAppContext, coreProviders } from "@getstrata/bootstrap";

createAppContext() does not call assertProductionSecrets. WorkHub calls that from App.serve() / queue:work. Sibling HTMX apps can call it in production without WorkHub API tokens when feature flags are off — see SIBLING-HTMX.md.

Sibling HTMX apps should bind createCookieSessionAuthManager from @getstrata/bootstrap/web/session instead of HMAC SessionGuard. Use signIn / signOut (or the redirect helpers) instead of calling CookieSessionStore from controllers. Pass mapUser to map roles in the app. Pass loadSessionUser when the default learn_subscriber / is_admin SELECT does not match your schema.

wrapWeb applies the web group (CSRF + flash) and withErrorHandling, so CSRF ForbiddenError becomes an HTML 403 in FRONTEND_MODE=server-htmx. wrapWebLogin / wrapWebRegister include that web group plus throttle — do not wrap them with wrapWeb again.

These subpaths remain WorkHub-oriented and are not a generic starter API: @getstrata/bootstrap/createRoutes (includes SCIM), @getstrata/bootstrap/schedule, and @getstrata/bootstrap/createWebRoutes (redirects / to /organizations).

See the strata monorepo reference app for full module patterns.