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

@seedgrid/fe-core

v2026.4.19

Published

Biblioteca de infraestrutura que padroniza módulos, rotas, persistência e internacionalização do SeedGrid.

Readme

@seedgrid/fe-core

Biblioteca de infraestrutura que padroniza módulos, rotas, persistência e internacionalização do SeedGrid.

Características

  • Registro centralizado de provedores, itens de navegação e rotas (SeedGridRegistry).
  • Manifestos de módulos com metadata, dependências de i18n e callbacks de registro.
  • Construção de chaves de persistência (buildSgPersistenceKey) e estratégias (localStorage, API ou compostas).
  • Utilitários de i18n para mesclar bundles e manter namespaces organizados.
  • Tipagens prontas para ambientes, provedores e estratégias que facilitam a evolução do portal SeedGrid.

Instalação

pnpm add @seedgrid/fe-core

Como utilizar

import {
  SeedGridRegistry,
  SeedGridModuleManifest,
  createLocalStorageStrategy,
  createCompositePersistenceStrategy,
  mergeMessages
} from "@seedgrid/fe-core";

const registry = new SeedGridRegistry();

const moduleManifest: SeedGridModuleManifest = {
  id: "my-module",
  name: "Módulo personalizado",
  version: "1.0.0",
  register: (registry) => {
    registry.addNavItem({
      id: "dashboard",
      labelKey: "menu.dashboard",
      href: "/dashboard"
    });
    registry.addRoute({ id: "dashboard", path: "/dashboard" });
  }
};

registry.addNavItem({
  id: "marketing",
  labelKey: "menu.marketing",
  href: "/marketing",
  order: 10
});

const messages = mergeMessages(
  { app: { welcome: "Bem-vindo" } },
  { app: { logout: "Sair" } }
);

const persistence = createCompositePersistenceStrategy({
  mode: "mirror",
  primary: createLocalStorageStrategy({ prefix: "sg:" }),
  secondary: createLocalStorageStrategy(),
});

Recursos

  • SeedGridRegistry mantém provedores, rotas e os itens de menu com ordenação.
  • SeedGridModuleManifest centraliza i18n, versão e o hook de registro de cada módulo.
  • Estruturas de persistência (createLocalStorageStrategy, createApiPersistenceStrategy, createCompositePersistenceStrategy) protegidas por buildSgPersistenceKey.
  • SeedGridMessages e mergeMessages simplificam o carregamento incremental de recursos de tradução.

Exemplos

  • Ordenar itens de menu: use getNavItems() após registrar módulos e rely on order.
  • Persistir estado crítico: combine createApiPersistenceStrategy com createLocalStorageStrategy para oferecer fallback offline.
  • Plugins modulares: cada register no SeedGridModuleManifest pode adicionar provedores/contextos com addProvider.