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

@axol-assist/accessflow

v1.0.2

Published

Production-ready accessibility toolbar SDK for any modern web app

Readme

@axol-assist/accessflow

Production-ready accessibility toolbar SDK by Axolo Assist. Add visitor-controlled font, contrast, spacing, and motion controls to any site with one import.

Quick start

npm install @axol-assist/accessflow

Zero-config (auto-initializes on load):

import '@axol-assist/accessflow/auto';

Styles, fonts, and the toggle icon are bundled in the JS — no separate asset requests.

Manual control (no auto-init):

import { boot } from '@axol-assist/accessflow';

boot({ position: 'bottom-left' });
import { init, destroy } from '@axol-assist/accessflow';

init({ position: 'top-right' });
// later
destroy();

Do not combine import '@axol-assist/accessflow/auto' with init() or <AccessFlow /> — pick one initialization path.

React

import { AccessFlow } from '@axol-assist/accessflow/react';

export default function App() {
  return (
    <>
      <AccessFlow />
      {/* your app */}
    </>
  );
}

The component mounts once, prevents duplicates, and cleans up on unmount.

Next.js (App Router)

// app/providers.tsx
'use client';

import { AccessFlow } from '@axol-assist/accessflow/react';

export function Providers({ children }: { children: React.ReactNode }) {
  return (
    <>
      <AccessFlow />
      {children}
    </>
  );
}

Astro

---
// src/layouts/Layout.astro
---
<script>
  import '@axol-assist/accessflow/auto';
</script>

CDN (no bundler)

<script src="https://axolassist.com/cdn/accessflow.js"></script>

Optional configuration before the script:

<script>
  window.AccessFlowConfig = {
    position: 'bottom-left',
    accentColor: '#B03060',
  };
</script>

Styles, fonts, and the toggle icon are inlined in the CDN bundle.

Configuration

| Option | Default | Description | |--------|---------|-------------| | position | bottom-right | Toolbar button placement | | accentColor | #B03060 | Active control color | | iconUrl | bundled icon | Toggle button image (override with your own URL) | | cssUrl | — | Load stylesheet via <link> instead of bundled CSS | | skipCssInject | false | Skip bundled CSS inject (use with cssUrl) | | showBranding | true | Show “Powered by Axolo Assist” in the panel footer | | skipAutoInit | false | CDN/auto entry only — disable auto boot | | storageKey | accessflow-settings-v1 | localStorage key | | features | all enabled | Toggle toolbar sections |

External stylesheet (optional)

Bundled CSS is the default. To host the stylesheet yourself:

import { boot } from '@axol-assist/accessflow';

boot({
  skipCssInject: true,
  cssUrl: '/accessflow.css',
});

Or copy from the package:

// Vite / Astro — serve from public/
import cssUrl from '@axol-assist/accessflow/styles.css?url';

boot({ skipCssInject: true, cssUrl });
import { init } from '@axol-assist/accessflow';

init({
  position: 'bottom-left',
  features: {
    bigCursor: false,
  },
});

Features

  • Text scaling (80%–200%)
  • OpenDyslexic font
  • Contrast modes (dark, high)
  • Color filters (grayscale, sepia, invert)
  • Letter, word, and line spacing
  • Reading guide bar
  • Link highlight and underline
  • Enhanced focus indicators
  • Reduce motion / pause animations
  • Large cursor
  • Persistent settings per visitor (localStorage)

Framework support

Works with React, Next.js, Vite, Astro, Vue, Svelte, and static HTML. SSR-safe — initialization only runs in the browser.

Development

cd packages/accessflow
npm install
npm run build

Build outputs ESM + CJS to dist/, ships dist/accessflow.css, and syncs the CDN IIFE to /cdn/accessflow.js.

Publishing

See PUBLISHING.md. Tag accessflow after adding NPM_TOKEN to GitHub Actions secrets.

Privacy

AccessFlow does not collect visitor data. Settings stay in the visitor's browser.

License

MIT © Axolo Assist