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

pdfmake-browserified

v0.1.4

Published

Browserified version of pdfmake. Supports require() and script-tag. Default font Roboto included, thus zero configuration. Supports custom fonts.

Downloads

1,340

Readme

  • Browserified version of pdfmake.
  • Can be used effortlessly with e.g. AngularJS.
  • Default font Roboto included, thus zero configuration.
  • Supports custom fonts (find prepared fonts here: Prepared Google Fonts).

Installation

npm install pdfmake-browserified

Node Usage

Default Font: Roboto

var createPdf = require('pdfmake-browserified');
var dd = { content: "This is a sample PDF printed with pdfMake" };
createPdf(dd).open();

Custom Font: Junge

Find prepared fonts for Node here: Prepared Google Fonts.

var createPdf = require('pdfmake-browserified');
var map = require('<path to>/browserified/ofl/junge.map.js'); // font style mapping
var data = require('<path to>/browserified/ofl/junge.js'); // font data

var defaultFont = Object.keys(map)[0];
var dd = {
	content: "This is a sample PDF printed with pdfMake",
	defaultStyle: { font: defaultFont }
};
createPdf(dd, map, data).open();

Browser Usage

Default Font: Roboto

<!doctype html>
 <html lang='en'>
 <head>
 	<meta charset='utf-8'>
 	<title>Google Fonts with regular pdfmake</title>
 	<script src='<your path>/pdfmake-browserified.min.js'></script>
 </head>
 <body>
    <input type="button" onclick="openPdf()" value="Open PDF"></input>
     <script>
        function openPdf() {
            var docDefinition = { content: "This is a sample PDF printed with pdfMake" };
            createPdf(docDefinition).open();
        }
     </script>
 </body>
</html>

Custom Font: Junge

Find prepared fonts for Browser here: Prepared Google Fonts.

<!doctype html>
 <html lang='en'>
 <head>
 	<meta charset='utf-8'>
 	<title>Google Fonts with regular pdfmake</title>
 	<script src='<your path>/pdfmake-browserified.min.js'></script>
 	<script src='<your path>/ofl/junge.js'></script><!-- the font data -->
 	<script src='<your path>/ofl/junge.map.js'></script><!-- the font-style mapping -->
 </head>
 <body>
    <input type="button" onclick="openPdf()" value="Open PDF"></input>
     <script>
        function openPdf() {
            var docDefinition = {
                content: "This is a sample PDF printed with pdfMake",
                defaultStyle: { font: Object.keys(pdfMake.fonts)[0] }
            };
            createPdf(docDefinition, pdfMake.fonts, pdfMake.vfs).open();
        }
     </script>
 </body>
</html>

Motivation

Providing pdfmake as an npm module, which can be required.

Removing boilerplate code, that is required when one uses pdfmake with frameworks line AngularJS.

Tests

A small AngularJS example is provided in the test directory.

The commands below will build the module bundle and open a browser. The page provides buttons to check open and download capabilities manually.

npm install
npm start

Minification for Production

During your production builds, including this module, you want to exclude this module from minification/uglification/compression, as it is already minified. The same is true for custom fonts. Both are pretty big and will slow minification/uglification/compression down.

Comparing pdfmake-browserified and pdfmake

pdfmake-browserified can be used like the original pdfmake via script-tag in an HTML page. With the same method signature: createPdf(docDefinition, fonts, vfs).open();

But: It can be used via require('pdfmake-browserify') in Node applications, too. In Node, the method signature stays the same: createPdf(docDefinition, fonts, vfs).open();

Contributors

xErik

Other Projects

NPM pdfmake-browserified MIT License

GIT pdfmake-browserified MIT License

pdfmake MIT License

Roboto Apache License

Junge OFL License

Note

I did this for fun. Contributions from people with a more solid node background are welcome!

License

MIT