
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.
@septem/hooks
Advanced tools
A hooks library compatible with React, Vue 3, and SolidJS.
# npm
npm install @septem/hooks
# yarn
yarn add @septem/hooks
# pnpm
pnpm add @septem/hooks
Import hooks from the specific framework path:
import { useToggle, useLocalStorage, useClippy } from '@septem/hooks/react';
function MyComponent() {
const [value, toggle] = useToggle(false);
const [name, setName] = useLocalStorage('user-name', '');
const [clipboard, setClipboard] = useClippy();
// Use the hooks...
}
<script setup>
import { useToggle, useLocalStorage, useClippy } from '@septem/hooks/vue';
const [value, toggle] = useToggle(false);
const [name, setName] = useLocalStorage('user-name', '');
const [clipboard, setClipboard] = useClippy();
</script>
import { useToggle, useLocalStorage, useClippy } from '@septem/hooks/solid';
function MyComponent() {
const [value, toggle] = useToggle(false);
const [name, setName] = useLocalStorage('user-name', '');
const [clipboard, setClipboard] = useClippy();
// Use the hooks...
}
For detailed documentation and examples, visit our documentation site.
Contributions are welcome! Please feel free to submit a Pull Request.
git checkout -b feature/amazing-feature)git commit -m 'Add some amazing feature')git push origin feature/amazing-feature)This project is licensed under the MIT License - see the LICENSE file for details.
FAQs
A hooks library compatible with React, Vue 3, and SolidJS
We found that @septem/hooks demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 0 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.