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

pdf-invoice-hu

v1.0.4

Published

Generate Hungarian formatted Invoice PDF

Downloads

12

Readme

pdf-invoice-hu

Install

$ npm i -s pdf-invoice-hu

Usage

const pdfInvoice = require('pdf-invoice-hu')

const document = pdfInvoice({
  seller: {
    phone: '+36 (1) 260-0529',
    email: '[email protected]',
    address: '1102 Budapest, Állomás utca 16.',
    name: 'DreamWare Computers kft.',
    bank_acc: '11704007-20238290-00000000',
    vat: '13741408-2-42',
  },
  buyer: {
    phone: '+36 (66) 888-8888',
    name: 'Árvíztűrő Tükörfúrógépgyár Zrt',
    email: '[email protected]',
    address: '1234 Budapest, Próba körtér 45. Második belső udvar 11',
    vat:'15324762-2-41',
    eu_vat:'HU15324762',
  },
  headline: {
    createdAt: '2018-08-01',
		completionDate: '2018-09-15',
		paymentDeadline: '2018-10-30',
		paymentMethod: 'Készpénz',
    invoiceId: 'BN-BM-50',
    commentText: 'Köszönjük vásárlását!',
    madeWith: 'Készült a DDO DreamInvoice számlázóval',
  },
  items: [
    {
      quantity: 12, 
      name: 'Első Termék', 
      description: 'Lorem ipsum dollor sit amet', 
      unit_price: 1000.20,
      net_price: 12002.4,
      vat_amount: 3240.648,
      amount: 15243.048
    },
    {
      quantity: 18, 
      name: 'Második Termék', 
      description: 'Lorem ipsum dollor sit amet', 
      unit_price: 500.01,
      net_price: 9000.18,
      vat_amount: 2430.0486,
      amount: 11430.2286
    },
    {
      quantity: 16, 
      name: 'Hamradik termék', 
      description: 'Lorem ipsum dollor sit amet', 
      unit_price: 2000.50,
      net_price: 32008,
      vat_amount: 8642.16,
      amount: 40650.16
    },
  ],
})

// That's it! Do whatever you want now.
// Pipe it to a file for instance:

const fs = require('fs')

document.generate() // triggers rendering
document.pdfkitDoc.pipe(fs.createWriteStream('path/to/file.pdf')) // write output (like pdfkit)

This package is part of a commercial invoicing program, but it can be used freely under MIT License. Based on pdf-invoice package, but it differs significantly from that.