
Security News
Crates.io Users Targeted by Phishing Emails
The Rust Security Response WG is warning of phishing emails from rustfoundation.dev targeting crates.io users.
nengi-geckos-client-adapter
Advanced tools
Warning This adapter is written and tested only on nengi v2.0.0-alpha.133, this is an unstable version, the api of which may change in the future
npm i nengi-geckos-client-adapter
import { Client, Context } from "nengi";
import { GeckosClientAdapter } from "nengi-geckos-client-adapter";
const serverTickRate = 20;
const ctx = new Context();
// <...>
const client = new Client(ctx, GeckosClientAdapter, serverTickRate);
await client.connect("http://localhost:9001");
Or if you want to pass additional options to the geckos.io client use an alternative connection method:
const geckosOptions = {};
await(client.adapter as GeckosClientAdapter).connect(
"http://localhost:9001",
{}, // handshake
geckosOptions
);
All available client options is described here https://github.com/geckosio/geckos.io#client-1
For server-side you need nengi-geckos-server-adapter
FAQs
geckos.io client network adapter for nengi v2
We found that nengi-geckos-client-adapter 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
The Rust Security Response WG is warning of phishing emails from rustfoundation.dev targeting crates.io users.
Product
Socket now lets you customize pull request alert headers, helping security teams share clear guidance right in PRs to speed reviews and reduce back-and-forth.
Product
Socket's Rust support is moving to Beta: all users can scan Cargo projects and generate SBOMs, including Cargo.toml-only crates, with Rust-aware supply chain checks.