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

@codewithahsan/ngx-quill-ink

v0.1.1

Published

Angular wrapper for quill-ink: streaming text as animated handwriting, signals-first.

Downloads

213

Readme

@codewithahsan/ngx-quill-ink

Angular wrapper for quill-ink: streaming text as animated handwriting, signals-first, zoneless-ready, SSR-safe.

Install

npm i @codewithahsan/ngx-quill-ink @codewithahsan/quill-ink-core @codewithahsan/quill-ink-fonts

Setup

import { provideQuillInk } from '@codewithahsan/ngx-quill-ink';
import { caveat } from '@codewithahsan/quill-ink-fonts/caveat';

export const appConfig: ApplicationConfig = {
  providers: [
    provideQuillInk({ font: 'caveat', inkColor: '#1a2b4a', packs: [caveat] }),
  ],
};

Use

<!-- signal text: growing values animate only the appended suffix -->
<quill-ink [text]="answer()" [options]="{ penSpeed: 1100 }" (writeDone)="onDone()" />

<!-- or feed a token stream (AsyncIterable or Observable of string) -->
<quill-ink [stream]="tokenStream" />

<!-- capture handwriting for a vision LLM -->
<quill-ink [captureMode]="true" (inkCommitted)="onInk($event)" />

[text] diffs by common prefix: perfect for resource()/streaming HTTP — each signal update writes only the new suffix. A shrink or mid-string edit triggers a clean rewrite.

  • Zoneless: no NgZone dependency anywhere.
  • SSR: the surface initializes in afterNextRender; server renders a plain <canvas> and hydrates cleanly.
  • [text] and [stream] are mutually exclusive (dev-mode error).

Out of scope for v1

RTL and CJK scripts, stylus pressure (v2), React/Vue wrappers (core is framework-free — contributions welcome).

License

MIT