
Security News
pnpm 11.10 Hardens Registry Authentication to Block Token Redirection
pnpm 11.10 hardens registry auth to block token redirection, tightens pack-app and deploy, and makes the Rust port (v12) installable.
@howells/stacksheet
Advanced tools
Typed, animated sheet stack system. Zustand store + Motion animations with Apple-style depth stacking.
A typed, animated sheet stack for React. Powered by Zustand and Motion.
npm install @howells/stacksheet
Peer dependencies: react >= 18, react-dom >= 18.
import { createStacksheet } from "@howells/stacksheet";
import "@howells/stacksheet/styles.css";
const { StacksheetProvider, useSheet } = createStacksheet();
function UserProfile({ userId }: { userId: string }) {
const { close } = useSheet();
return (
<div>
<h2>User {userId}</h2>
<button onClick={close}>Done</button>
</div>
);
}
function App() {
return (
<StacksheetProvider>
<YourApp />
</StacksheetProvider>
);
}
Open a sheet from any component:
const { open } = useSheet();
open(UserProfile, { userId: "u_abc" });
No registration, no type map, no config. The sheet slides in from the right on desktop, bottom on mobile, with focus trapping, scroll lock, drag-to-dismiss, and keyboard navigation built in.
Full docs, interactive playground, and API reference:
MIT
FAQs
Typed, animated sheet stack system. Zustand store + Motion animations with Apple-style depth stacking.
The npm package @howells/stacksheet receives a total of 36 weekly downloads. As such, @howells/stacksheet popularity was classified as not popular.
We found that @howells/stacksheet demonstrated a healthy version release cadence and project activity because the last version was released less than 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
pnpm 11.10 hardens registry auth to block token redirection, tightens pack-app and deploy, and makes the Rust port (v12) installable.

Security News
/Research
Socket uncovered 17 malicious npm and PyPI packages typosquatting Paysafe, Skrill, and Neteller SDKs to steal developer secrets.

Security News
Node.js is debating whether AI-driven security report volume warrants moving more vulnerability reports into public workflows.