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

@myrmidon/gve-snapshot-rendition

v2.0.7

Published

Web components for rendering interactive text transformations with hint designer. This package is an early version published for internal evaluation and staging use only. A final open-source license will be published later.

Readme

GVE Snapshot Rendition Component

📖 Documentation

Conceptual documentation and sample data:

  • snapshot backend model: overview of the backend data used by the component.
  • rendition description: documentation about the architecture and logic of the snapshot renderer custom web control.
  • data used in the demo are found in the data folder. Each sample has 4 files:
    • (no suffix): base text and operations DSL. This is the snapshot data.
    • *.base.txt: base text.
    • *.request.json: request to API. You can generate this from the backend demo app.
    • *.data.json: response from API. These are the data bound to the renderer control.
    • *.settings.json: settings for the renderer control.
  • hint designer: documentation about hints designer custom web control.
  • features adapter services: documentation about complementary services independent from the GVE snapshot rendition component, optionally used to adapt data before passing it to the component.

Developer's usage guide:

🟢 Feature Adapter

The Feature Adapter is a utility system for transforming features in snapshot data. It enables you to adapt high-level features into low-level rendition features that the component can use:

🟢 Hint Designer

The Hint Designer is a companion web component which can be used to help users edit and test their hints SVG and JS animation code. The main web component used for display has no relation with it. Rather, the hint designer component reuses some logic from the main component, while still being aside.

Use the npm script to start the designer:

pnpm run start:designer

This will build the component and open the hint designer in your browser.

If you want to pick a different sample, add it to the URL with a sample argument, e.g. localhost:3000?sample=h5-48.

🚀 Quick Start

To start working with this code:

  1. clone this repository.
  2. download dependencies with pnpm i.
  3. run with pnpm start.

💡 Note: if you need to create sample data, follow these steps:

  1. create a .txt file with base text and operations DSL.

  2. open the GVE backend solution and run the demo.

  3. set text and operations copying them from the .txt file.

  4. click the "build request" button.

  5. run the GVE backend API and use Postman or similar to send the request body with this header:

    POST http://localhost:5239/api/text/operations/run
    Accept: application/json
    Content-Type: application/json
    
    ...paste your JSON request body here...
  6. copy the response and paste it into a new set of data files.

  7. run with the name of the data file: localhost:3000?NAME.

📦 Deployment

You must be logged into NPM with your account (verify with npm whoami, login with npm login if required).

  1. ensure that tests pass (pnpm test) and be sure to build (pnpm build).
  2. publish via pnpm run publish:public or directly via pnpm publish --access=public.

Check that your package is available:

pnpm view @myrmidon/gve-snapshot-rendition

Or visit: https://www.npmjs.com/package/@myrmidon/gve-snapshot-rendition

The following files/directories are included in the package (defined in package.json files field):

  • dist/ - Compiled JavaScript and TypeScript declarations
  • README.md - Package documentation
  • LICENSE - License file

The package includes these automated scripts:

  • prepublishOnly: Runs before npm publish - executes tests and build
  • prepack: Runs before creating a tarball - executes build
  • publish:public: Custom script to publish with public access

To unpublish a specific version:

pnpm unpublish @myrmidon/[email protected]

To unpublish the entire package (only allowed within 72 hours):

pnpm unpublish @myrmidon/gve-snapshot-rendition --force

⚠️ Unpublishing can break projects that depend on your package. Only do this for critical security issues or accidental publications.

Package structure:

@myrmidon/gve-snapshot-rendition/
├── dist/
│   ├── index.js              # ES Module bundle
│   ├── index.d.ts            # TypeScript declarations
│   ├── index.cjs.min.js      # CommonJS bundle (minified)
│   └── ...
├── README.md
└── LICENSE

🌐 To deploy a static HTML demo page in surge:

  1. run the script for the demo you want to create (deploy-demo.ps1 or deploy-hint-demo.ps1).
  2. enter the created folder, run surge, enter your credentials, confirm the local source directory, and specify a URL to use (e.g. <gve-rendition.surge.sh> or <gve-hint-designer.surge.sh>).

Demo links: