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

capture-template

v1.1.18

Published

This library is responsible for expanding a template web page and then capturing it PNG or PDF.

Downloads

46

Readme

capture-template

This library is responsible for expanding a template web page and then capturing it to an image or PDF file.

It provides the 'capture' functionality for Data-Forge Plot and Data-Forge Notebook.

Premise

A template web page is any number of web assets (JS files, HTML files, CSS files etc) in a directory. Each asset is a Handlebars template that can be expanded by data.

A template is expanded in memory and exposed via a web server.

The Nightmare headless browser is then instantiated and used to load the expaneded web page and capture it to an image or PDF.

This library is used by Data-Forge Plot and Data-Forge Notebook to capture visualizations to images and PDF files.

Creating a template

A template is a directory that contains template files for web assets that are inflated with data.

By convention you need an index.html to be the main web page. You can have any number of supporting assets such as JavaScript and CSS files.

This repository contains an example template under the test-template directory. Please use this to understand the basics of how a template is constructed.

A template can contain a template.json configuration file and a test-data.json. Both files by convention are omitted from the expanded template.

template.json must contain a field 'waitSelector' that specifies the element/tag that must appear in the DOM before the image or PDF file can be captured.

When using the 'renderImage' function a 'captureSelector' field can optionally specify the root element to be captured. If tonot specified the the 'waitSelector' field is used instead. 'captureSelector' is ignored for PDF capture, PDF capture automatically captures the entire web page.

Programmatic Usage

Installation

npm install --save capture-template

Require

JavaScript:

const { captureImage, capturePDF } = require('capture-template');

TypeScript:

import { captureImage, capturePDF } from 'capture-template';

Usage

Expanding a web page and capturing a image:

const data = { /* ... your data to be expanded into the template ... */ }
const templatePath = "<path-to-load-your-template-web-page-from>";
const outputPath = "<image-file-to-write-the-capture-to>";
await captureImage(templatePath, data, outputPath);

Expanding a web page and capturing a PDF:

const data = { /* ... your data to be expanded into the template ... */ }
const templatePath = "<path-to-load-your-template-web-page-from>";
const outputPath = "<pdf-file-to-write-the-capture-to>";
await capturePDF(templatePath, data, outputPath);

Command line usage

This can also be used from the command line to test template web pages.

Before using from the command line make sure your template contains a 'test-data.json' that is used to fill out the template.

To use from the command line please install globally like this:

npm install -g capture-template

You can also omit the -g and just install locally, but then make sure you prefix all the subsequent commands with npx.

To start a server from a template:

capture-template serve --template=<path-to-your-web-page-template> --port=3000

Now you can navigate your browser to localhost:3000 to see how the template renders in the browser.

To do a test capture of an image:

capture-template capture-image --template=<path-to-your-web-page-template> --out=<ouput-file-name>

To do a test capture of a PDF:

capture-template capture-pdf --template=<path-to-your-web-page-template> --out=<ouput-file-name>