
Security News
The Hidden Blast Radius of the Axios Compromise
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.
@smst/edu-tools
Advanced tools
A comprehensive collection of educational tools and utilities as reusable React components with zero-config auto-discovery
A comprehensive collection of educational tools and utilities as reusable React components
A modern, lightweight, and fully-featured library of educational tools built with React. Perfect for building educational platforms, learning management systems, or any application that needs interactive educational components.
npm install @smst/edu-tools
Peer Dependencies (you need to install these):
npm install react react-dom
Bundled Dependencies (installed automatically, no action needed):
framer-motion - Animationszustand - State managementreact-rnd - Drag and resizelucide-react - Iconsmathlive - Equation editorThat's it! Everything else is included.
Create a client component:
"use client";
import { ToolsDock } from "@smst/edu-tools";
import "@smst/edu-tools/styles";
export default function App() {
return (
<div>
<h1>My Educational App</h1>
<ToolsDock />
</div>
);
}
import { ToolsDock } from "@smst/edu-tools";
import "@smst/edu-tools/styles";
function App() {
return (
<div>
<h1>My Educational App</h1>
<ToolsDock />
</div>
);
}
What you get:
ToolsDock works out of the box. When you need control, pass props to choose tools, override labels/window settings, or set theme behavior.
ToolId[] — choose and order tools to displayRecord<ToolId, { label?: string; window?: Partial<CreateWindowParams> }>{ initial?: 'light' | 'dark' | 'system'; persist?: boolean }Supported ToolId values: "setsquare" | "tts" | "todo" | "calculator" | "periodic" | "ruler" | "protractor" | "equation" | "magnifier" | "geogebra" | "dictionary" | "browser" | "context7" | "askai" | "annotator".
import { ToolsDock } from "@smst/edu-tools";
import "@smst/edu-tools/styles";
export default function App() {
return <ToolsDock tools={["equation", "calculator", "ruler", "annotator"]} />;
}
<ToolsDock
tools={["equation", "periodic", "ruler", "tts"]}
overrides={{
equation: {
label: "Math",
window: {
initialBounds: { width: 820, height: 540, x: 120, y: 120 },
minWidth: 800,
minHeight: 520,
},
},
ruler: {
label: "Measure",
window: { isFrameless: true, isResizable: false },
},
}}
/>
<ToolsDock
theme={{
initial: "system", // 'light' | 'dark' | 'system'
persist: true, // save last choice in localStorage (default: true)
showToggle: true, // show/hide theme button in dock (default: true)
}}
/>
<ToolsDock
tools={["equation", "calculator", "periodic", "dictionary"]}
theme={{ initial: "dark", persist: false }}
overrides={{
dictionary: {
label: "Lexicon",
window: { initialBounds: { width: 560, height: 520, x: 160, y: 160 } },
},
}}
/>
The ToolsDock automatically includes:
That's it! No configuration, no props, no setup required.
The styles are included when you import @smst/edu-tools/styles. The package includes:
All styling is self-contained - no conflicts with your existing styles.
Full TypeScript definitions are included:
import { ToolsDock } from "@smst/edu-tools";
// Types are automatically available
We welcome contributions! See DEVELOPMENT.md for developer documentation.
MIT © SMST
FAQs
A comprehensive collection of educational tools and utilities as reusable React components with zero-config auto-discovery
The npm package @smst/edu-tools receives a total of 19 weekly downloads. As such, @smst/edu-tools popularity was classified as not popular.
We found that @smst/edu-tools demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 2 open source maintainers 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
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.

Research
A supply chain attack on Axios introduced a malicious dependency, plain-crypto-js@4.2.1, published minutes earlier and absent from the project’s GitHub releases.

Research
Malicious versions of the Telnyx Python SDK on PyPI delivered credential-stealing malware via a multi-stage supply chain attack.