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

nxus-printer

v4.0.3

Published

Print/screenshot module for nxus

Downloads

5

Readme

nxus-printer

Printer

Extends NxusModule

Page wrapper for rendering

The module defines a printer page wrapper, similar to bare, but with settings to initialize the Puppeteer environment.

Deployment to Heroku

When deployed to Heroku, the renderer requires the puppeteer Buildpack:

```
https://github.com/jontewks/puppeteer-heroku-buildpack
```

Add it to the list of Buildpacks on the application Settings panel. Or add it to buildpacks in app.json: {"url": "jontewks/puppeteer"}

It also requires the following configuration variables:

  • nxus_baseUrl - The host component of URLs for renderable pages. It is typically the host component of the domain configured for the Heroku application. When a page is rendered, the full URL for the page is formed by combining this host component with a protocol component and a root-relative path component.

By default, the puppeteer browser is configured to run without chrome sandboxing. Use appropriately.

renderPage

Renders a printable version of a web page. Launch options for puppeteer can be set in the nxus configuration printer.puppeteer property.

Parameters

  • relativeUrl string root-relative URL of the page to be rendered (the path and query string components, but not the protocol or host components)
  • options Object rendering options:- type - rendered format, used as file type (default pdf); supports pdf, png, jpg/jpeg
    • secure - if true, use https subdomain - prepend the application config baseUrl with this sub-domain if set
    • width and height will override the PDF/image rendering format (normally "Letter")
    • other options are passed to the pdf rendering (optional, default {})

Returns Promise promise that resolves to the path to the rendered output.