
Product
Rust Support in Socket Is Now Generally Available
Socket’s Rust and Cargo support is now generally available, providing dependency analysis and supply chain visibility for Rust projects.
urbit-airlock
Advanced tools
npm install urbit-airlock --save
Opening a connection to your urbit is as follows
const connection = await connect(
'zod',
'http://localhost',
80,
'lidlut-tabwed-pillex-ridrup'
);
const channel = new Channel(connection);
You may then subscribe and poke over the connection.
channel.subscribe('chat-view', '/primary', {
mark: 'json',
onError: (err: any) => { console.log(err); },
onEvent: (event: any) => { console.log(event); },
onQuit: (err: any) => { console.log(err); }
});
channel.poke('gall-app', {
mark: 'json',
data: { update: 2 }
});
Pokes and subscription updates are strongly typed, but you need to make the interface-mark correspondence known to typescript.
You associate a mark to an interface like so
declare module 'urbit-airlock/lib/marks' {
interface Marks {
readonly 'number': number;
}
}
This associates the 'number' mark to the typescript type number
FAQs
A library for interacting with your urbit over HTTP
We found that urbit-airlock 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’s Rust and Cargo support is now generally available, providing dependency analysis and supply chain visibility for Rust projects.

Security News
Chrome 144 introduces the Temporal API, a modern approach to date and time handling designed to fix long-standing issues with JavaScript’s Date object.

Research
Five coordinated Chrome extensions enable session hijacking and block security controls across enterprise HR and ERP platforms.