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 🙏

© 2026 – Pkg Stats / Ryan Hefner

@openpowershift/asciidoctor-prot-time-curves

v0.1.1

Published

Asciidoctor.js extension rendering OpenPowerShift protection-relay time-current grading curves (tc-curves) to SVG/PNG

Readme

@openpowershift/asciidoctor-prot-time-curves

An Asciidoctor.js 4 extension that renders .ptc time-current grading studies (tc-curves) — protection-relay coordination sheets — to SVG, PNG, or PDF at conversion time.

It is the JavaScript counterpart of the asciidoctor-prot-time-curves Ruby gem and shares the same rendering core, so a given study and options produce byte-identical output from either. Ships as a single bundled file (Node ESM + CommonJS and a browser build) with TypeScript types.

Install

npm install @openpowershift/asciidoctor-prot-time-curves @openpowershift/time-current-grading-language

@openpowershift/time-current-grading-language is the renderer (a runtime dependency). Unlike some diagram renderers, it ships its own PNG rasteriser (@resvg/resvg-js) as a real dependency of its own — nothing extra to install for format=png.

Use (Node)

Rendering is asynchronous, so convert returns a promise — always await it.

import { Extensions, convert } from '@asciidoctor/core'
import ptc from '@openpowershift/asciidoctor-prot-time-curves'

const registry = Extensions.create()
ptc.register(registry)

const html = await convert(source, { extension_registry: registry, safe: 'safe' })
[ptc]
....
relay R_FDR { ... }
....

ptc::studies/feeder-grading.ptc[format=png,view=Residual]

Images are written under imagesdir/imagesoutdir, with content-hash file names and metadata-sidecar caching — identical to the gem.

Command line

npx asciidoctor -r @openpowershift/asciidoctor-prot-time-curves document.adoc

Browser

@openpowershift/asciidoctor-prot-time-curves/browser embeds the study inline (SVG or PNG — PNG rasterises via <canvas>). Your bundler/import map must provide the tc-curves library.

import ptc from '@openpowershift/asciidoctor-prot-time-curves/browser'

Standalone (Asciidoctor VS Code, zero install)

For editors like Asciidoctor VS Code that load any .js file under .asciidoctor/lib/ (searched recursively), a self-contained build bundles the library in and renders SVG inline and synchronously. No install needed — download asciidoctor-prot-time-curves-standalone.js from a release and save it as .asciidoctor/lib/ptc.js. Or, if the package is installed:

// .asciidoctor/lib/ptc.js
module.exports = require('@openpowershift/asciidoctor-prot-time-curves/standalone')

PDF and asciidoctor-pdf

format=pdf renders through the very same core; PDF isn’t consumed here (there’s no browser preview for it), but the file it writes is meant for asciidoctor-pdf’s own PDF-page-import: image::studies/feeder-grading.ptc[format=pdf] embeds it as a real page, and all-views=true renders every declared sheet as one page each, selected with page/pages (asciidoctor-pdf’s own attributes, passed straight through).

Attributes

format (svg|png|pdf), scale, width, theme (light|dark|monochrome|print), view, all-views, size, orientation, margin, background, font-family, force, plus a positional target and format, and the document-wide ptc-* forms (ptc-format, ptc-scale, …). Every image gets the roles ptc, ptc-<format>, ptc-<theme>, and ptc-forced / ptc-grading-fail when applicable. See the full documentation.

License

MIT © Daniel Mulholland