
Product
Introducing Socket Scanning for OpenVSX Extensions
Socket now scans OpenVSX extensions, giving teams early detection of risky behaviors, hidden capabilities, and supply chain threats in developer tools.
@fabianbormann/meerkat
Advanced tools
Meerkat aims to be a typescript and webpack 5 friendly re-implementation of Bugout: A browser-to-browser networking built on WebTorrent
npm i @fabianbormann/meerkat
<script src="https://fabianbormann.github.io/meerkat/meerkat.min.js"></script>
<script>
const meerkat = new Meerkat({ ... });
</script>
import Meerkat from '@fabianbormann/meerkat';
const meerkat = new Meerkat({ seed: localStorage['bugout-demo-server-seed'] });
localStorage['meerkat-server-seed'] = meerkat.seed;
let connected = false;
meerkat.on('connections', (clients) => {
if (clients === 0 && connected === false) {
connected = true;
console.log('[info]: server ready');
}
console.log(`[info]: ${clients} clients connected`);
});
meerkat.register('hello', (address, args, callback) => {
console.log(
`[info]: rpc call invoked by address ${address} into window.cardano`
);
callback('hello world');
});
console.log(`Share this address ${meerkat.address} with your clients`);
import Meerkat from '@fabianbormann/meerkat';
const meerkat = new Meerkat({ identifier: 'YOUR_SERVER_ADDRESS' });
meerkat.on('server', () => {
console.log('[info]: connected to server');
meerkat.rpc('YOUR_SERVER_ADDRESS', 'hello', {}, (response) =>
console.log(response)
);
});
FAQs
Browser-to-browser networking built on WebTorrent
We found that @fabianbormann/meerkat 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.

Product
Socket now scans OpenVSX extensions, giving teams early detection of risky behaviors, hidden capabilities, and supply chain threats in developer tools.

Product
Bringing supply chain security to the next generation of JavaScript package managers

Product
A safer, faster way to eliminate vulnerabilities without updating dependencies