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 🙏

© 2025 – Pkg Stats / Ryan Hefner

@blockly/keyboard-experiment

v0.0.9

Published

A plugin for keyboard navigation.

Downloads

114

Readme

Blockly Keyboard Experimentation

This plugin for Blockly enables keyboard navigation. It is intended to experiment with different actions that might help visually impaired and motor impaired people navigate a Blockly workspace.

Keyboard navigation and screenreader support are closely coupled. The Blockly team intends to add screenreader support incrementally in Q2 and Q3 of 2025, as we validate the general approach to navigation.

For more planning and timeline information please read the January 29 timeline post on the wiki.

End-user instructions

You can explore the current state of the plugin on the test page.

To use keyboard navigation, click on the workspace or press tab until you reach the workspace.

Once browser focus is on the Blockly workspace, you can use arrow keys to move a cursor around the workspace. You can use keyboard shortcuts to take actions at the cursor.

For instance, you can move the cursor to a dropdown field and press the Enter key to edit the field.

The available actions depend on the cursor location. For instance, if the cursor is on a block you can copy it with Ctrl + C.

You can open the toolbox by pressing T or pressing Tab until the toolbox is highlighted. Just like the workspace, you can use the arrow keys to move around the toolbox and select a block. Pressing Enter will place the block at the cursor's location on the workspace.

If you don't know which actions are available at your cursor location, you can press Ctrl + Enter to open the context menu and see a list of actions.

Giving feedback

If you use the test page and find a bug, please let us know by opening an issue on this repository! Include information about how to reproduce the bug, what the bad behaviour was, and what you expected it to do. The Blockly team will triage the bug and add it to the roadmap.

Note on @blockly/keyboard-navigation plugin

There is also an existing keyboard navigation plugin. That plugin may be where a finalized version of keyboard navigation eventually lives. But for now, this is where experimentation will be done.

Testing in your app

Installation

Yarn

yarn add @blockly/keyboard-experiment

npm

npm install @blockly/keyboard-experiment --save

Usage

import * as Blockly from 'blockly';
import {KeyboardNavigation} from '@blockly/keyboard-experiment';
// Inject Blockly.
const workspace = Blockly.inject('blocklyDiv', {
  toolbox: toolboxCategories,
});
// Initialize plugin.
const keyboardNav = new KeyboardNavigation(workspace);

Contributing

To learn more about contributing to this project, see the contributing page.