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

@joaopedrogomes/nif-pt

v1.0.0

Published

Validate and get more information from portuguese tax ID numbers

Downloads

22

Readme

@joaopedrogomes/nif-pt

Validate and get more information from portuguese tax ID numbers

Understanding the NIF concept

The Portuguese tax system is really complex, so let's check some concepts first:

What is a NIF?

NIF stands for Número de Identificação Fiscal, which translates to Tax ID Number.

Who can get a NIF?

The NIF is a unique ID and can be attributed to individuals or to collective persons like companies, societies, etc., that need to pay taxes in Portugal. The number can be attributed to non-resident foreigners as well.

Types of NIF: NIF and NIPC

There are two types of NIF, and the first two digits of the number define it:

  • Between 10 and 49: NIF - individuals
  • Betweeen 50 and 99: NIPC - collective

So, while colloquially the term NIF applies to all tax IDs, legally, the collective tax IDs are referred to as NIPC. The acronym NIPC stands for Número de Identificação de Pessoa Colectiva, which translates to Collective Person ID Number.

Installation

npm install --save-dev @joaopedrogomes/nif-pt

Usage

You can get all the information in an object with the NIF function (nif). However, if you only want to get one of the keys of the object, you can also call the desired function directly: categorize, designate, or validate.

NIF - nif(value: string)

Usage

import { nif } from '@joaopedrogomes/nif-pt';

const data = nif('123456789');

Return

{
    category: string,
    designation: string,
    valid: boolean
}

| Category : string | Designation : string| Valid : boolean | |---|---|---| | pessoa singular | NIF | true | | pessoa colectiva | NIPC | false | | administração pública | | | | pessoa singular não residente | | | | herança indivisa | | | | pessoa colectiva não residente | | | | fundos de investimento | | | | atribuição oficiosa | | | | regime excepcional | | | | condominios e sociedades irregulares | | | | não residentes | | | | sociedades civis | | |

Category only - categorize(value: string)

Usage

import { categorize } from '@joaopedrogomes/nif-pt';

const data = nif('123456789');

Return

string

Designation only - designate(value: string)

Usage

import { designate } from '@joaopedrogomes/nif-pt';

const data = nif('123456789');

Return

string

Valid only - validate(value: string)

Usage

import { validate } from '@joaopedrogomes/nif-pt';

const data = nif('123456789');

Return

boolean

Credits

License

MIT