Code Monkey home page Code Monkey logo

pdfmake-browserified's Introduction

  • 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

pdfmake-browserified's People

Contributors

xerik avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar

pdfmake-browserified's Issues

Webpack warning 'Critical dependencies: This seems to be a pre-built javascript file.'

Hi, I'm trying to use pdfmake-browserified 0.1.4 with webpack, but I get error:

[HMR] ./~/pdfmake-browserified/build/pdfmake-browserified.min.js
Critical dependencies:
1:482-489 This seems to be a pre-built javascript file. Though this is possible, it's not recommended. 
Try to require the original source to get better results.
 @ ./~/pdfmake-browserified/build/pdfmake-browserified.min.js 1:482-489

Tried different import methods, like:
const createPdf = require('pdfmake-browserified');
import createPdf from pdfmake-browserified';
import createPdf from '../../../node_modules/pdfmake-browserified/build/pdfmake-browserified.min.js';

how to update pdfmake version?

Looks like pdfmake 0.1.25 is on NPM. Could you update this project to the latest version? The 0.1.18 does not seem to support configuration of borders in tables, which i need for a layout. Happy to submit a pull request if you can explain how to update it.

require('pdfmake-browserified') error

Hello.

I've just installed pdfmake-browserified via npm and it's dependencies on a Node.js server running Sails.js framework, and when I declare the require in the controller I get the following error:

/root/newP/node_modules/pdfmake-browserified/build/pdfmake-browserified.min.js:2
typeof navigator||!/MSIE [1-9]./.test(navigator.userAgent)){var t=e.document,
^
TypeError: Cannot read property 'document' of undefined
at saveAs (/root/newP/node_modules/pdfmake-browserified/build/pdfmake-browserified.min.js:2:232)
at Object. (/root/newP/node_modules/pdfmake-browserified/build/pdfmake-browserified.min.js:2:2499)
at s (/root/newP/node_modules/pdfmake-browserified/build/pdfmake-browserified.min.js:1:685)
at /root/newP/node_modules/pdfmake-browserified/build/pdfmake-browserified.min.js:1:736
at Object. (/root/newP/node_modules/pdfmake-browserified/build/pdfmake-browserified.min.js:267:202)
at Object.../libs/fileSaver (/root/newP/node_modules/pdfmake-browserified/build/pdfmake-browserified.min.js:268:4)
at s (/root/newP/node_modules/pdfmake-browserified/build/pdfmake-browserified.min.js:1:685)
at e (/root/newP/node_modules/pdfmake-browserified/build/pdfmake-browserified.min.js:1:856)
at /root/newP/node_modules/pdfmake-browserified/build/pdfmake-browserified.min.js:1:874
at a (/root/newP/node_modules/pdfmake-browserified/build/pdfmake-browserified.min.js:1:150)
at Object. (/root/newP/node_modules/pdfmake-browserified/build/pdfmake-browserified.min.js:1:387)
at Module._compile (module.js:456:26)
at Object.Module._extensions..js (module.js:474:10)
at Module.load (module.js:356:32)
at Function.Module._load (module.js:312:12)
at Module.require (module.js:364:17)

Am I missing something?
Thanks in advance.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.