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

hpdf.js

v0.0.2

Published

Create PDFs in your browser or nodejs (javascript port of libharu)

Readme

hpdf.js

Create PDFs in your browser (port of libharu) See the demo page

Why?

Because other projects with the same goal lack a lot of features (e.g. custom fonts).

Features

  • Custom Fonts (Type1 and TTF)
  • PNG, JPG and RAW images
  • Password encryption
  • Text and Link Annotations
  • Outlines
  • Drawing function (lines, cycles etc.)
  • Encoding support

How to use

Include hpdf.js or hpdf.min.js in your HTML file and see examples or libharu API reference

API naming convention

  • Function names are like their libharu API pendants but object-oriented and their first letter is lowercase.
    // javascript code                           // C code
    var pdf = new HPDF();                        HPDF_Doc pdf = HPDF_New (error_handler, NULL);
    var page = pdf.addPage();                    HPDF_Page page = HPDF_AddPage(pdf);
    pdf.free();                                  HPDF_Free(pdf);
  • Get in the function name is ommitted and Set is kept
    // javascript code                           // C code
    var width = page.width();                    HPDF_REAL width = HPDF_Page_GetWidth(page);
    page.setLineWidth(5);                        HPDF_Page_SetLineWidth(page, 5);
  • Use undefined in Javascript where you would use NULL in C
    // javascript code                           // C code
    var root = pdf.createOutline(undefined,      root = HPDF_CreateOutline (pdf, NULL, "OutlineRoot", NULL);
       "OutlineRoot", undefined);
  • Use strings (case irrelevant) in Javascript where you would use constants in C
    // javascript code                           // C code
    page.setSize('B5', 'landscape');             HPDF_Page_SetSize(page, HPDF_PAGE_SIZE_B5, HPDF_PAGE_LANDSCAPE);
  • Tailing NULL/undefined can be ommitted
    // javascript code                           // C code
    var font = pdf.font('Helvetica');            HPDF_Font font = HPDF_PDF_GetFont(pdf, 'Helvetica', NULL);
  • Instead of the error handling function in C Exceptions are thrown in Javascript

Dependencies

None. You just need emscripten and CoffeeScript if you want to help developing hpdf.js

How to compile (for devs only)

  1. Configure libhaku cmake ./libharu

  2. Configure libpng cd ./libpng; cmake .; cd ..

  3. Compile hpdf.js ./compile.sh (You might want to change some paths in this bash script!)