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

vat-exemption-reasons

v0.1.0

Published

[![npm version](https://badge.fury.io/js/vat-exemption-reasons.svg)](https://badge.fury.io/js/vat-exemption-reasons) [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)

Readme

VAT Exemption Reasons (VATEX) for JavaScript / TypeScript

npm version License: MIT

JavaScript package for the VAT Exemption Reasons (VATEX) code lists used in European e-invoicing.

About VAT Exemption Reasons (VATEX)

The VAT Exemption Reasons (VATEX) is a code list used within the European e-invoicing standard EN 16931 to specify the reason for VAT exemption on an invoice. When an invoice includes items that are exempt from VAT, the VATEX code clarifies the legal basis for this exemption, such as reverse charge mechanisms, intra-community supply, or specific exemptions based on EU Council Directive 2006/112/EC.

This ensures that different systems can correctly interpret and process VAT-exempt transactions. The code list is maintained by KoSIT (Coordination Office for IT Standards) and is based on VATEX from the Connecting Europe Facility (CEF). It is essential for standards like XRechnung, ZUGFeRD, and networks like Peppol.

This package provides the official VATEX code lists in a simple, accessible format for use in JavaScript and TypeScript applications.

RechnungsAPI

If you are looking for an API solution to generate German e-invoice documents, consider checking out RechnungsAPI, without which this package would not exist.

Installation

Install the package using your favorite package manager:

npm install vat-exemption-reasons

or

yarn add vat-exemption-reasons

Usage

You can import the latest version of the code list or a specific historical version to match your compliance needs.

Importing the Latest Code List

The main export of the package provides all versions of the VATEX code list.

import { VATEX } from 'vat-exemption-reasons';
// Or to just get the latest version:
import { VATEX } from 'vat-exemption-reasons/latest';

console.log('Latest VATEX Codes:', VATEX);
// [
//   {
//   	code: "VATEX-EU-79-C",
//   	name: "Exempt based on article 79, point c of Council Directive 2006/112/EC",
//   	description: "Repayment handling context"
//   },
//   { code: "VATEX-EU-AE", name: "Reverse charge", description: "Only use with VAT category code AE" },
//   { code: "VATEX-EU-IC", name: "Intra-community supply", description: "Only use with VAT category code K" },
//   ...
// ]

Importing a Specific Version

For specific use cases or to align with older specifications, you can deep-import a particular version of the code list. The package is configured to allow this to help optimize your application's bundle size.

// For example, to get version 2 of the list
import { VATEX_2 } from 'vat-exemption-reasons/2';

console.log('VATEX Version 2:', VATEX_2);

Data Structure

Each code list is an array of objects, where each object conforms to the CodeListEntry type.

export interface CodeListEntry {
	code: string;
	name?: string;
	description?: string;
}

export type CodeList = CodeListEntry[];

Available Code Lists

This package contains multiple versions of the VAT Exemption Reasons (VATEX) code list. You can import them as needed:

  • Version 1
  • Version 2 (Latest)