
Security News
OpenClaw Advisory Surge Highlights Gaps Between GHSA and CVE Tracking
A recent burst of security disclosures in the OpenClaw project is drawing attention to how vulnerability information flows across advisory and CVE systems.
cell-router
Advanced tools
Web Component Router based on WebCell & MobX
https://web-cell.dev/cell-router/preview/
<iframe />-like Route Component as a Page Container
Page Link (support <a />, <area /> & <form />)
<a href="route/path">Page title</a><a href="route/path" title="Page title">Example page</a><a href="#page-section">Page section</a> (Scroll to an Anchor smoothly)<form method="get" action="route/path" /> (Form Data processed by URLSearchParams) Path Mode: location.hash (default) & history.pushState()
Async Loading (based on import() ECMAScript syntax)
View Transition API based Page Transition Animation
| SemVer | status | WebCell | API | async page | page transition | nested router |
|---|---|---|---|---|---|---|
4.x | ✅ | >=3.1 | HTML tags (+ JSON) | ✅ | ✅ | ❌ |
3.x | ❌ | 3.x | HTML tags | ✅ | ✅ | ❌ |
2.x | ❌ | 2.x | HTML tag + JSON | ✅ | ✅ | ✅ |
>=2.0.0-alpha.0 <2 | ❌ | 2.x | abstract class + JSON | ✅ | ❌ | ✅ |
1.x | ❌ | 1.x | abstract class + ES decorators | ❌ | ❌ | ❌ |
>=0.9 <1.0 | ❌ | 0.x | abstract class + ES decorators | ❌ | ❌ | ❌ |
<0.9 | ❌ | 0.x | class + HTML tags | ❌ | ❌ | ❌ |
npm install dom-renderer web-cell cell-router
npm install parcel @parcel/config-default @parcel/transformer-typescript-tsc -D
tsconfig.json{
"compilerOptions": {
"target": "ES6",
"useDefineForClassFields": true,
"jsx": "react-jsx",
"jsxImportSource": "dom-renderer"
}
}
.parcelrc{
"extends": "@parcel/config-default",
"transformers": {
"*.{ts,tsx}": ["@parcel/transformer-typescript-tsc"]
}
}
source/index.tsximport { DOMRenderer } from 'dom-renderer';
import { FC } from 'web-cell';
import { CellRouter, createRouter, PageProps } from 'cell-router';
const { Route, Link } = createRouter();
const TestPage: FC<PageProps> = ({
className,
style,
path,
history,
...data
}) => (
<ul {...{ className, style }}>
<li>Path: {path}</li>
<li>Data: {JSON.stringify(data)}</li>
</ul>
);
new DOMRenderer().render(
<>
<nav>
<Link to="test?a=1">Test</Link>
<Link to="example/2">Example</Link>
</nav>
<CellRouter className="router">
<Route
path=""
component={props => <div {...props}>Home Page</div>}
/>
<Route path="test" component={TestPage} />
<Route path="example/:id" component={TestPage} />
</CellRouter>
</>
);
tsconfig.json{
"compilerOptions": {
"module": "ES2020"
}
}
source/index.tsximport { DOMRenderer } from 'dom-renderer';
import { FC, lazy } from 'web-cell';
import { CellRouter, createRouter, PageProps } from 'cell-router';
const { Route, Link } = createRouter();
const TestPage: FC<PageProps> = ({
className,
style,
path,
history,
...data
}) => (
<ul {...{ className, style }}>
<li>Path: {path}</li>
<li>Data: {JSON.stringify(data)}</li>
</ul>
);
const AsyncPage = lazy(() => import('./Async'));
new DOMRenderer().render(
<>
<nav>
<Link to="test?a=1">Test</Link>
<Link to="example/2">Example</Link>
</nav>
<CellRouter className="router">
<Route
path=""
component={props => <div {...props}>Home Page</div>}
/>
<Route path="test" component={TestPage} />
<Route path="example/:id" component={AsyncPage} />
</CellRouter>
</>
);
FAQs
Web Component Router based on WebCell & MobX
The npm package cell-router receives a total of 29 weekly downloads. As such, cell-router popularity was classified as not popular.
We found that cell-router 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
A recent burst of security disclosures in the OpenClaw project is drawing attention to how vulnerability information flows across advisory and CVE systems.

Research
/Security News
Mixed-script homoglyphs and a lookalike domain mimic imToken’s import flow to capture mnemonics and private keys.

Security News
Latio’s 2026 report recognizes Socket as a Supply Chain Innovator and highlights our work in 0-day malware detection, SCA, and auto-patching.