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

validador-id-ec-gv

v1.0.1

Published

Validador de números de identidad en Ecuador

Downloads

63

Readme

Validador-ID-EC 📋

Validador de números de identidad (NUI) y RUC de Ecuador


Descripción 📝

validador-id-ec es una librería ligera en JavaScript que valida números de identificación de ciudadanía (NUI) y Registro Único de Contribuyentes (RUC) específicos de Ecuador. Es ideal para aplicaciones web o backend que necesiten verificar la autenticidad de estos números.


Instalación 💻

Instala la librería desde npm usando el siguiente comando:

npm install validador-id-ec

Requisitos Previos 🚀

  • Node.js: Versión >=16.0.0
  • npm: Asegúrate de tener npm >=8.0.0 para una mejor compatibilidad.

Uso 🛠️

Importación en tu proyecto

Como la librería está configurada como ES Module, debes usar import:

import { validar_nui, validar_ruc } from 'validador-id-ec';

Validar NUI (Número Único de Identidad)

import { validar_nui } from 'validador-id-ec';

const nuiValido = '0926687852';
const nuiInvalido = '1234567890';

console.log(validar_nui(nuiValido)); // true
console.log(validar_nui(nuiInvalido)); // false

Validar RUC (Registro Único de Contribuyentes)

import { validar_ruc } from 'validador-id-ec';

const rucValido = '0926687852001';
const rucInvalido = '1234567890001';

console.log(validar_ruc(rucValido)); // true
console.log(validar_ruc(rucInvalido)); // false

API 📚

1. validar_nui(nui)

Valida si un número de identificación ecuatoriano (NUI) es correcto.

  • Parámetro: nuistring o number (Debe contener exactamente 10 dígitos numéricos).
  • Retorno: booleantrue si es válido, false si es inválido.

Ejemplo:

validar_nui('0926687852'); // true
validar_nui('1234567890'); // false

2. validar_ruc(ruc)

Valida si un número RUC ecuatoriano es correcto.

  • Parámetro: rucstring o number (Debe contener exactamente 13 dígitos numéricos).
  • Retorno: booleantrue si es válido, false si es inválido.

Ejemplo:

validar_ruc('0926687852001'); // true
validar_ruc('1234567890001'); // false

Ejecutar Pruebas 🧪

El proyecto cuenta con pruebas unitarias usando Mocha y Chai.

  1. Clona el repositorio:

    git clone https://github.com/gabvillacis/validador-id-ec.git
    cd validador-id-ec
  2. Instala las dependencias:

    npm install
  3. Ejecuta las pruebas:

    npm test

Compatibilidad

| Requisito | Versión mínima | |---------------------|---------------| | Node.js | 16.0.0 | | npm | 8.0.0 |


Licencia 📄

Este proyecto está licenciado bajo la licencia MIT. Consulta el archivo LICENSE para más detalles.


Contribuciones 🤝

¡Las contribuciones son bienvenidas! Si deseas mejorar esta librería, puedes hacerlo de la siguiente manera:

  1. Haz un fork del repositorio.
  2. Crea una nueva rama:
    git checkout -b feature/nueva-funcionalidad
  3. Realiza tus cambios y haz commit:
    git commit -m "Agrega nueva funcionalidad X"
  4. Sube tus cambios:
    git push origin feature/nueva-funcionalidad
  5. Crea un Pull Request.

Notas Finales 📌

Esta librería es ideal para desarrolladores y equipos que trabajen en aplicaciones ecuatorianas donde la validación de números de identificación sea necesaria.

¡Espero que te sea útil! 🎉


Comandos Rápidos

  • Instalación: npm install validador-id-ec
  • Ejecutar pruebas: npm test
  • Importar: import { validar_nui, validar_ruc } from 'validador-id-ec';