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

@seniorsistemas/scala-platform-ng

v1.0.0-beta.3

Published

**Biblioteca de componentes Angular com regras de negócio da [Senior Sistemas](https://www.senior.com.br/)** — camada de plataforma construída sobre o Design System [Scala-NG](https://git.senior.com.br/frontend/scala-ng).

Downloads

88

Readme

Scala-Platform-NG

Biblioteca de componentes Angular com regras de negócio da Senior Sistemas — camada de plataforma construída sobre o Design System Scala-NG.

Desenvolvido e mantido pelo time SDS (Senior Design System).

Desenvolvedores

Eduardo Franz · Moacir Zimermann


O que é

Scala-Platform-NG é a camada de componentes Angular orientados ao domínio de negócio da Senior Sistemas. Diferente do Scala-NG (que fornece primitivos visuais agnósticos), esta lib encapsula:

  • Componentes conectados a APIs da plataforma Senior (consultas, formulários, listagens)
  • Regras de negócio recorrentes nos produtos da Senior
  • Integrações com serviços internos (autenticação, permissões, i18n, etc.)
  • Smart components que combinam lógica de domínio com os componentes visuais do Scala-NG

Relação com Scala-NG

Scala-Platform-NG  →  consome  →  Scala-NG (Design System)
       ↓                               ↓
  Regras de negócio            Primitivos visuais
  Consultas a APIs             Tokens de design
  Domínio Senior               Componentes base

Suporte

| Tecnologia | Versão mínima | | ------------ | ------------- | | Angular | 18 | | Tailwind CSS | 3.4 |


Instalação

ng add @seniorsistemas/scala-platform-ng

O schematics cuida automaticamente de:

  • Instalar o Tailwind CSS e suas dependências
  • Configurar o preset @seniorsistemas/scala-tailwind-config com os tokens do design system
  • Registrar os estilos globais da lib no angular.json

Uso

Importe o componente desejado no seu componente standalone:

import { ExemploComponent } from "@seniorsistemas/scala-platform-ng";

@Component({
  imports: [ExemploComponent],
  // ...
})
export class AppComponent {}
<sds-exemplo />

Desenvolvimento local

Pré-requisitos

  • Node.js 20+
  • npm 10+

Setup

npm install

Servidor de desenvolvimento (showcase)

npm start

Acesse http://localhost:4200 para visualizar os componentes no showcase.

Build da lib

npm run build

Testes

# Todos os testes
npm test

# Com cobertura
npm run test:coverage

Lint

npm run lint
npm run lint:fix

Formatação

npm run format
npm run format:check

Estrutura do projeto

projects/
├── scala-platform-ng/      # Código-fonte da lib
│   ├── src/
│   │   ├── lib/            # Componentes, serviços e diretivas
│   │   └── public-api.ts   # Exports públicos da lib
│   ├── schematics/         # ng-add schematic
│   └── styles.scss         # Estilos globais
└── showcase/               # Aplicação de demonstração dos componentes

Licença

Propriedade da Senior Sistemas S.A. — uso interno.