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

@mounaji_npm/core

v0.4.2

Published

Core runtime utilities for Mounaji apps: providers, bootstrap, layout guards, and module capability access.

Downloads

285

Readme

@mounaji_npm/core

Main core runtime package for Mounaji apps. Keeps foundational app plumbing together while preserving domain modularity.

@mounaji_npm/core is the runtime entrypoint for app setup concerns. If you install core, you should not need to install app-providers, app-bootstrap, layout-guards, module-registry-core, or module-gates separately unless you want to consume those packages directly.


Includes

  • @mounaji_npm/app-providers
  • @mounaji_npm/app-bootstrap
  • @mounaji_npm/layout-guards
  • @mounaji_npm/module-registry-core
  • @mounaji_npm/module-gates

Install

npm install @mounaji_npm/core

Peer requirements:

  • react
  • react-dom

Bundled runtime subdependencies:

  • @mounaji_npm/app-providers
  • @mounaji_npm/app-bootstrap
  • @mounaji_npm/layout-guards
  • @mounaji_npm/module-registry-core
  • @mounaji_npm/module-gates

Quick Start

import {
  AppProviders,
  useSystemAssistantsBootstrap,
  useLayoutGuards,
  CapabilitiesProvider,
  PermissionGate,
} from '@mounaji_npm/core';

function Bootstrap({ user, showOnboarding }) {
  useSystemAssistantsBootstrap({
    user,
    showOnboarding,
    createInitializer: async () => ({
      areSystemAssistantsInitialized: async () => true,
      initializeSystemAssistants: async () => {},
    }),
  });

  return null;
}

export default function App({ children }) {
  return (
    <AppProviders providers={[]}>
      <CapabilitiesProvider
        adapter={{
          getCapabilitiesSnapshot: async () => ({
            plan: 'pro',
            permissions: ['members.view'],
            features: [],
            modules: {},
          }),
        }}
        params={{ organizationId: 'org_1', userId: 'usr_1' }}
      >
        <Bootstrap user={{ id: 'usr_1' }} showOnboarding={false} />
        <PermissionGate permissions={['members.view']} fallback={<div>Access denied</div>}>
          {children}
        </PermissionGate>
      </CapabilitiesProvider>
    </AppProviders>
  );
}

Scope

@mounaji_npm/core is intentionally limited to foundational runtime concerns. Domain modules like auth, database, api-client, and organization-team stay independent.

Use core for app wiring and capability-aware runtime setup. Use saas-template for the shell and module-driven app layout. Use cli when you want to scaffold a new project from the terminal.