Product
Socket Now Supports uv.lock Files
Socket now supports uv.lock files to ensure consistent, secure dependency resolution for Python projects and enhance supply chain security.
custom-history
Advanced tools
Custom hash history implemenation for preact
npm i -S custom-history
import { Router, Link } from 'preact-router';
import { h, render } from 'preact';
import { createHashHistory } from 'custom-history';
const Home = (props) => <p>Home</p>;
const About = (props) => <p>About</p>;
const Search = (props) => <p>Search {JSON.stringify(props)}</p>;
const App = () => <main>
<div>
| <Link href="/home">link home</Link> |
| <a href="#/home">home</a> |
| <a href="#/about">about</a> |
| <a href="#/search/query?x=1">search</a> |
</div>
<Router history={createHashHistory()}>
<Home path="/" />
<Home path="/home" />
<About path="/about" />
<Search path="/search/:query/:advanced?" />
</Router>
</main>;
render(<App />, document.body);
See CHANGELOG
FAQs
Custom hash history implemenation for preact
The npm package custom-history receives a total of 1 weekly downloads. As such, custom-history popularity was classified as not popular.
We found that custom-history 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.
Product
Socket now supports uv.lock files to ensure consistent, secure dependency resolution for Python projects and enhance supply chain security.
Research
Security News
Socket researchers have discovered multiple malicious npm packages targeting Solana private keys, abusing Gmail to exfiltrate the data and drain Solana wallets.
Security News
PEP 770 proposes adding SBOM support to Python packages to improve transparency and catch hidden non-Python dependencies that security tools often miss.