Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
h5p-lib-controls
Advanced tools
Grab all the module:
npm i --save-development h5p-lib-controls
Run tests:
npm test
Build distribution
npm run build
To get keyboard navigation using arrow keys between elements you can do the following:
import Controls from 'h5p-lib-controls/src/scripts/controls';
import UIKeyboard from 'h5p-lib-controls/src/scripts/ui/keyboard';
// Add support for arrow keys + HOME + END
const controls = new Controls([new UIKeyboard()]);
// Add support for ENTER and SPACE
controls.on('select', event => console.log('user selected element', event.element));
// Add support for ESC
controls.on('close', event => console.log('perform closing action'));
import Controls from 'h5p-lib-controls/src/scripts/controls';
import UIKeyboard from 'h5p-lib-controls/src/scripts/ui/keyboard';
import AriaSelected from 'h5p-lib-controls/src/scripts/aria/selected';
// this control will also apply [aria-selected="true"] on select event
const controls = new Controls([new UIKeyboard(), new AriaSelected()]);
import Controls from 'h5p-lib-controls/src/scripts/controls';
import AriaDrag from 'h5p-lib-controls/src/scripts/aria/drag';
import AriaDrop from 'h5p-lib-controls/src/scripts/aria/drop';
import UIKeyboard from 'h5p-lib-controls/src/scripts/ui/keyboard';
// trigger [aria-grabbed="true"] with keyboard
const dragControls = new Controls([new UIKeyboard(), new AriaDrag()]);
// trigger [aria-dropeffect="move"] with keyboard
const dropControls = new Controls([new UIKeyboard(), new AriaDrop()]);
By default h5p-lib-controls will remove [tabindex]
from the elements that are not selected. If you instead want to use [tabindex="-1"]
, you can do the following:
const controls = new Controls([new UIKeyboard()]);
controls.useNegativeTabIndex();
...
FAQs
Library for adding user input to web applications
We found that h5p-lib-controls demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.