
Security News
Axios Maintainer Confirms Social Engineering Attack Behind npm Compromise
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.
use-sequential-list
Advanced tools
use-sequential-list is a React hook that allows you to sequentially render a list of items.
npm install use-sequential-list
import { useSequentialList } from 'use-sequential-list';
import { useEffect } from 'react';
const origin = [
{ name: 'Item 1' },
{ name: 'Item 2' },
{ name: 'Item 3' },
{ name: 'Item 4' },
];
function App() {
const { items } = useSequentialList(origin);
return (
<div>
{items.map((item) => (
<Item key={item.name} {...item} />
))}
</div>
);
}
interface ItemProps {
name: string;
done: () => void;
isLoaded: boolean;
}
function Item({ name, done, isLoaded }: ItemProps) {
useEffect(() => {
const timer = setTimeout(() => {
done();
}, 1000);
return () => {
clearTimeout(timer);
};
//NOTE: that we don't need to add `done` to the dependency array
}, []);
return (
<div>
{name} {isLoaded ? '✔️' : '❌'}
</div>
);
}
export default App;

| Name | Type | Description |
|---|---|---|
| items | T[] | The list of items to render sequentially. |
If you find any issues, please report them.
FAQs
useSequentialList hooks
We found that use-sequential-list 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
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.

Security News
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.