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

cte-dacte-pdf

v1.0.0

Published

Modulo Node.js para gerar PDF de DACTE, cancelamento e CC-e a partir de XML de CT-e.

Readme

cte-dacte-pdf

Modulo Node.js/TypeScript para gerar PDF de documentos relacionados ao CT-e.

Hoje o modulo suporta:

  • DACTE a partir de CT-e autorizado
  • evento de cancelamento de CT-e
  • Carta de Correcao Eletronica (CC-e)

Instalacao

npm install
npm run build

Exemplo rapido

import fs from 'node:fs/promises';
import { CtePdfService } from 'cte-dacte-pdf';

const xml = await fs.readFile('./cte.xml', 'utf8');
const service = new CtePdfService();

try {
  const pdf = await service.generateFromXml(xml, {
    outputPath: './saida.pdf'
  });

  await fs.writeFile('./saida.pdf', pdf);
} finally {
  await service.close();
}

O que a API faz

  • detecta automaticamente CT-e, cancelamento e CC-e em generateFromXml()
  • gera PDF a partir do XML bruto ou de dados normalizados
  • aceita complementos visuais e operacionais sem alterar o XML fiscal

CLI

Depois do build, o pacote expõe o bin cte-pdf.

cte-pdf ./cte.xml
cte-pdf --autorizado ./cte.xml
cte-pdf --cancelado ./evento-cancelamento.xml
cte-pdf --cce ./evento-cce.xml

Opcoes principais:

  • --autorizado
  • --cancelado
  • --cce
  • -o, --output
  • --out-dir
  • --template
  • --logo
  • --json-info
  • --header-note
  • --footer-note
  • --watermark
  • --validate-only
  • --quiet

Customizacao suportada

  • headerNote
  • footerNote
  • watermarkText
  • additionalInfo
  • customSections
  • partyOverrides

Documentacao

Exemplos locais

  • 01-generate-from-xml.js: gerar PDF direto do XML
  • 02-parse-document.js: parsear e inspecionar o documento
  • 03-generate-from-data.js: gerar DACTE a partir de dados normalizados
  • 04-custom-options.js: customizar o PDF
  • 05-cli.js: chamar o bin cte-pdf
  • 06-import-compiled.js: consumir o build compilado com import
  • 07-require-compiled.cjs: consumir o build compilado com require

Os exemplos 05, 06 e 07 dependem de npm run build.

Compliance

O modulo foi desenhado para seguir a estrutura do CT-e e dos eventos da SEFAZ, mas o XML autorizado ou registrado continua sendo a fonte fiscal primaria. O PDF e representacao auxiliar.

Desenvolvimento

npm run build