
Security News
Packagist Urges Immediate Composer Update After GitHub Actions Token Leak
Packagist urges PHP projects to update Composer after a GitHub token format change exposed some GitHub Actions tokens in CI logs.
use-keyboard-timer
Advanced tools
use-keyboard-timer is a minimal, React hook for Cubing Timers. It handles all the logic of a timer (inspection, holding space, etc) so that you can focus on building the UI! The only peer dependency is react
use-keyboard-timer is a minimal, React hook for Cubing Timers. It handles all the logic of a timer (inspection, holding space, etc) so that you can focus on building the UI! The only peer dependency is react
Install by doing yarn add use-keyboard-timer or npm install use-keyboard-timer
import useKeyboardTimer from 'use-keyboard-timer';
const settings = {
timerInput: 'timer',
inspection: 'always',
timerUpdate: 'deciseconds',
timeToRelease: 'stackmat',
};
const { time, inspectionTime, state, isTiming, dnf, plusTwo } = useKeyboardTimer(settings);
return (
<div>
{`Time: ${time} \n State: ${state} \n Inspection: ${inspectionTime} \n DNF: ${dnf} \n Plus 2: ${plusTwo}`}
</div>
);
The settings paramater takes an object of the following TimerSettings type:
interface TimerSettings {
layout: 'drawer' | 'divider3' | 'divider2' | 'simple';
timerInput: 'manual' | 'timer' | 'stackmat';
inspection: 'always' | 'never' | 'nonbld';
timerUpdate: timerUpdate;
timeToRelease: timeToRelease;
}
type timerUpdate = 'seconds' | 'centiseconds' | 'millisecond' | 'none' | number; // a number means ever X ms
type timeToRelease = 'none' | 'stackmat';
The hook returns the following type:
interface useKeyboardTimerReturn {
time: number | null; // the time in ms
isTiming: boolean;
state: TimerState;
inspectionTime: number; // inspection time in seconds. Can be 0/-1 indicating +2
pause: () => void; // function to pause the timer
unpause: () => void; // function to unpause the timer
dnf: boolean; // True if over 17 seconds of inspection is used
plusTwo: boolean; True if 15-17 seconds of inspection is used
}
/**
* @typedef NONE: Nothing is happening. This only happens when the timer is reset and/or when the hook is called for the first time
* @typedef INSPECTION: We are currently in inspection state
* @typedef SPACE_PRESSED_TIMING: The spacebar has been pressed, but is not yet valid for beginning.
* @typedef SPACE_PRESSED_VALID: The spacebar has been pressed and is valid to begin the time
* @typedef STARTED: The timer is running. The time will be available in the `time` variable.
* @typedef STOPPED: Timer has been stopped. The final time is available in the `time` variable. Note that users can start a new solve immediately
* @typedef PAUSED: A timer can be paused by calling the `pause()` function. When paused, times cannot begin. This may be useful when you want to open a modal, and dont want the timer running in the background. You can unpause by calling the `unpause()` function, which reverts back to `NONE` state.
*/
type TimerState =
| 'NONE'
| 'INSPECTION'
| 'INSPECTION_PENALTY'
| 'SPACE_PRESSED_TIMING'
| 'SPACE_PRESSED_VALID'
| 'SPACE_PRESSED_INSPECTION'
| 'STARTED'
| 'STOPPED'
| 'PAUSED';
TSDX scaffolds your new library inside /src, and also sets up a Parcel-based playground for it inside /example.
The recommended workflow is to run TSDX in one terminal:
npm start # or yarn start
This builds to /dist and runs the project in watch mode so any edits you save inside src causes a rebuild to /dist.
Then run the example inside another:
cd example
npm i # or yarn to install dependencies
npm start # or yarn start
The default example imports and live reloads whatever is in /dist, so if you are seeing an out of date component, make sure TSDX is running in watch mode like we recommend above. No symlinking required, we use Parcel's aliasing.
To do a one-off build, use npm run build or yarn build.
To run tests, use npm test or yarn test.
This is the folder structure we set up for you:
/example
index.html
index.tsx # test your component here in a demo app
package.json
tsconfig.json
/src
index.tsx # EDIT THIS
/test
blah.test.tsx # EDIT THIS
.gitignore
package.json
README.md # EDIT THIS
tsconfig.json
cd example
npm i # or yarn to install dependencies
npm start # or yarn start
The default example imports and live reloads whatever is in /dist, so if you are seeing an out of date component, make sure TSDX is running in watch mode like we recommend above. No symlinking required!
FAQs
use-keyboard-timer is a minimal, React hook for Cubing Timers. It handles all the logic of a timer (inspection, holding space, etc) so that you can focus on building the UI! The only peer dependency is react
We found that use-keyboard-timer 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.

Security News
Packagist urges PHP projects to update Composer after a GitHub token format change exposed some GitHub Actions tokens in CI logs.

Research
GemStuffer abuses RubyGems as an exfiltration channel, packaging scraped UK council portal data into junk gems published from new accounts.

Company News
Socket was named to the Rising in Cyber 2026 list, recognizing 30 private cybersecurity startups selected by CISOs and security executives.