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

mkpdf

v1.0.0

Published

Convert Markdown to PDF using marked and wkhtmltopdf

Downloads

4

Readme

mkpdf

npm version

Convert Markdown to PDF using marked and wkhtmltopdf. You can use multiple Markdown input files and customize the resulting PDF using HTML and CSS.

Credits

Thanks to https://github.com/alanshaw/markdown-pdf, which also converts Markdown files to PDF using remarkable and PhantomJS.

wkhtmltopdf

mkpdf is using wkhtmltopdf to convert HTML to PDF using Webkit (QtWebKit). Before you can use mkpdf, you'll have to install wkhtmltopdf command line tool.

You can either download a prebuilt version for your system or use a package manager, for example on OS X:

Install wkhtmltopdf with Homebrew
brew install Caskroom/cask/wkhtmltopdf

Command line usage

Installation

Install mkpdf as a global module:

npm install -g mkpdf

Usage

Usage: mkpdf [options] <markdown-files...>

Options:

-h, --help                             output usage information
-V, --version                          output the version number
-f, --paper-format [format]            "A3", "A4", "A5", "Legal", "Letter" or "Tabloid"
-r, --paper-orientation [orientation]  "portrait" or "landscape"
-b, --paper-border [measurement]       Supported dimension units are: "mm", "cm", "in", "px"
-o, --out [path]                       Path for saving the PDF
--disable-toc                          Don't create a table of contents
--toc-title [title]                    The table of contents title. Defaults to "Table of Contents"
--css-path [path]                      Path to custom CSS file
--highlight-css-path [path]            Path to custom highlight.js CSS file
--html-path [path]                     Path to custom HTML file

For example, convert README.md to README.pdf:

mkpdf README.md

Or, combine multiple markdown files to a single PDF:

mkpdf -o welcome.pdf README.md LICENSE.md CONTRIBUTING.md

Programmatic usage

Installation

Install mkpdf as a local module into your project:

npm install mkpdf

Usage

var mkpdf = require('mkpdf')

mkpdf().from('/path/to/document.md').to('/path/to/document.pdf', function () {
	console.log('Done')
})

// Or using streams
var fs = require('fs')

fs.createReadStream('/path/to/document.md')
	.pipe(mkpdf())
	.pipe(fs.createWriteStream('/path/to/document.pdf'))

API

mkpdf returns a stream-from-to object which simplifies the construction of various source and destination streams.

Options

Pass an options object to mkpdf to configure the output.

mkpdf(options)

options.paperFormat

The paper size. Defaults to A4

options.paperBorder

The paper margin. Defaults to 2cm

options.paperOrientation

The paper orientation. Defaults to portrait

options.disableToc

Don't create a table of contents. Defaults to false

options.tocTitle

The table of contents title. Defaults to Table of Contents

options.cssPath

Path to custom CSS file, relative to the current directory. Defaults to [mkpdf_path]/assets/pdf.css

options.highlightCssPath

Path to custom highlight.js CSS file, relative to the current directory. Defaults to [mkpdf_path]/assets/github-gist.css

options.htmlPath

Path to custom HTML file, relative to the current directory. Defaults to [mkpdf_path]/assets/index.html

options.preProcessMd

A function that returns a through2 stream that transforms the Markdown before it is converted to HTML. Defaults to function () { return through() }

options.preProcessHtml

A function that returns a through2 stream that transforms the HTML before it is converted to PDF. Defaults to function () { return through() }