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 🙏

© 2024 – Pkg Stats / Ryan Hefner

npu-validator-library

v1.0.2

Published

Uma biblioteca para validação de números CNJ

Downloads

177

Readme

npu-validator-library

A npu-validator-library é uma biblioteca em TypeScript para validação de números CNJ (Código Nacional de Processo Judicial). Ela permite verificar se um número CNJ é válido, garantindo que ele esteja no formato correto e realizando cálculos de dígitos verificadores.

Instalação

Para instalar a biblioteca em seu projeto, use o npm:

npm install npu-validator-library

Como Usar

1. Importando a biblioteca

No seu código TypeScript ou JavaScript, importe a função de validação CNJValidator:

import { CNJValidator } from 'npu-validator-library';

2. Validando um Número CNJ

A biblioteca fornece a função validate() que recebe um número CNJ como parâmetro e retorna um objeto indicando se o número é válido ou não.

Exemplo de uso:

const resultado = CNJValidator.validate('0000000-00.0000.0.00.0000');

if (resultado.valid) {
    console.log('Número CNJ válido:', resultado.processo);
} else {
    console.error('Erro:', resultado.error);
}

Parâmetros da Função validate()

numeroCNJ: string: O número CNJ a ser validado. O número pode conter caracteres como pontos (.), hífens (-) e underlines (_), que serão automaticamente removidos antes da validação.

Retorno

A função retorna um objeto do tipo ValidationResult, que pode ter a seguinte estrutura:

interface ValidationResult {
  valid: boolean; // Indica se o número CNJ é válido ou não
  error?: string; // Mensagem de erro caso o número não seja válido
  processo?: {
    numeroCNJ: string; // Número CNJ completo
    numeroIdentificador: string; // Número identificador (primeiros 7 dígitos)
    digitoVerificador: string; // Dígito verificador (2 dígitos)
    anoProcesso: string; // Ano do processo (4 dígitos)
    codigoJustica: string; // Código da Justiça (1 dígito)
    tribunal: string; // Tribunal (2 dígitos)
    comarca: string; // Comarca (4 dígitos)
  };
}

Exemplo de Resultado

Se o número CNJ for válido:

{
  "valid": true,
  "processo": {
    "numeroCNJ": "00000000000000000000",
    "numeroIdentificador": "0000000",
    "digitoVerificador": "00",
    "anoProcesso": "0000",
    "codigoJustica": "0",
    "tribunal": "00",
    "comarca": "0000"
  }
}

Se o número CNJ não for válido:

{
  "valid": false,
  "error": "Erro! O número CNJ informado não é válido."
}

Dependências

  • TypeScript: A biblioteca é escrita em TypeScript e exige um ambiente com suporte ao TypeScript.
  • Node.js: A biblioteca funciona em qualquer ambiente Node.js moderno.