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

@startinblox/tamis-onboarding

v1.0.1

Published

TAMIS onboarding administration UI — operator dashboard and review flow (Lit web components).

Readme

@startinblox/tamis-onboarding

TAMIS onboarding administration UI — operator dashboard and review flow, delivered as Lit web components on top of the Startin'blox SOLID framework (sibStore, sibRouter, Orbit).

Replaces the Django server-rendered registration-admin/ templates that ship inside djangoldp_tamis_onboarding — the Django views remain for the public registration form and attachment downloads, but operators use these components.

Components

| Element | Role | |---|---| | <solid-tamis-onboarding> | Top-level OrbitComponent. Point data-src at the RegisterParticipant LDP container; the component watches sibRouter and either renders the list or the review view. | | <tamis-onboarding-participants-list> | Sortable dashboard table — submitted / organisation / requester / types / status badge / actions. Approve and Deny buttons request navigation to the review route. | | <tamis-onboarding-participant-review> | Full-detail review card — organisation, legal address, main contact, billing contact, attachments, lifecycle — plus the confirm form (notes textarea appears on deny). |

State mutations go through window.sibStore.patch(...):

  • ApprovePATCH { status: "processing" } on the participant. The djangoldp_tamis_onboarding background task promotes processing → approved after Keycloak provisioning.
  • DenyPATCH { status: "rejected", notes: "…" } on the participant. Rejection requires operator notes (server-side validation in models.py).

Access control is server-side: the LDP RegisterParticipant.permission_classes gate writes to authenticated operators.

Usage in Orbit

<script type="module" src="https://cdn.jsdelivr.net/npm/@startinblox/core@latest/dist/index.js" defer></script>
<script type="module" src="https://cdn.jsdelivr.net/npm/@startinblox/tamis-onboarding@latest" defer></script>

<solid-tamis-onboarding
  data-src="https://onboarding.tamis.example.com/onboarding/registerparticipants/"
></solid-tamis-onboarding>

Attachments are downloaded via the existing Django view (/registration/admin/attachments/<pk>/) — the download_url field on each attachment resource points at it. The endpoint gates on operator membership.

Requirements on the backend

The LDP resource must expose attachments as a nested field, and each ParticipantAttachment must serialize @id, kind, kind_display, original_filename, mime_detected, size_bytes, download_url, uploaded_at. This is on djangoldp_tamis_onboarding ≥ the version that added nested_fields = ["attachments"] to RegisterParticipant.Meta.

Development

npm install
npm run storybook   # isolated component dev at http://localhost:6006
npm run build       # produces dist/index.js (ESM, target esnext)
npm run cy:run      # cypress component tests

See AGENTS.md for the boilerplate conventions this repo is built on (component base classes, cherryPickedProperties, gatekeeper(), i18n patterns).

License

MIT.