
Security News
Node.js TSC Votes to Stop Distributing Corepack
Corepack will be phased out from future Node.js releases following a TSC vote.
@3dverse/livelink.core
Advanced tools
The Livelink protocol enables communication between a client and a 3dverse server using a message-based, binary format. This protocol evolves alongside server updates, necessitating a dynamically loaded implementation rather than embedding it directly in client applications.
This package, the Livelink Core library, provides:
The Livelink Core library package primarily offers TypeScript type definitions. The only functional code it includes is the DynamicLoader
module, which dynamically retrieves the remaining library code from the CDN.
By dynamically loading the library, this system guarantees smooth communication with the server, regardless of server-side updates.
⚠ Warning: This library is not meant for direct use. Refer to the @3dverse/livelink package for a practical implementation.
To install the package, run:
npm install @3dverse/livelink.core
Import the DynamicLoader module:
import { DynamicLoader } from "@3dverse/livelink.core";
Before using any other features, call the load static method:
await DynamicLoader.load();
Once the library is loaded, create a new instance of the core using the Core()
static method:
const core = new DynamicLoader.Core();
This instance contains the full implementation of the Livelink protocol.
A formal specification of the Livelink protocol is not yet published. The protocol primarily revolves around:
Stay tuned for updates as the protocol evolves.
FAQs
3dverse Livelink Core types.
The npm package @3dverse/livelink.core receives a total of 213 weekly downloads. As such, @3dverse/livelink.core popularity was classified as not popular.
We found that @3dverse/livelink.core demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers 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
Corepack will be phased out from future Node.js releases following a TSC vote.
Research
Security News
Research uncovers Black Basta's plans to exploit package registries for ransomware delivery alongside evidence of similar attacks already targeting open source ecosystems.
Security News
Oxlint's beta release introduces 500+ built-in linting rules while delivering twice the speed of previous versions, with future support planned for custom plugins and improved IDE integration.