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.
@casual-simulation/aux-vm
Advanced tools
A set of abstractions and common utilities required to run an AUX on any platform.
npm install @casual-simulation/aux-vm
import { BaseSimulation, AuxVM } from '@casual-simulation/aux-vm';
// Simulations are wrappers for an
// AuxVM + AuxChannel combo.
// They make all the capabilities of an AUX easy to access
// and understand.
export class MySimulation extends BaseSimulation {
constructor(
id: string, // The ID of the
config: { isBuilder: boolean; isPlayer: boolean }
) {
super(id, config, config => new MyAuxVM(config));
}
}
// An AUX VM is in charge of separating
// the consumer from the AUX Environment.
// Basically its a security barrier between an AUX and the consumer code.
// On Web Browsers, this is usually implemented via web workers and sandboxed iframes.
// On Node.js, this is implemented via a custom script sandbox.
// Below, you can implement your own VM.
export class MyAuxVM implements AuxVM {
// TODO: Implement
}
V0.11.27
auxBuilder
dimension and can be woken up by clicking it... [name]
- Wakes Builder with the given name. If the name is omitted, then the b001
Builder will be woken..sleep
- Puts Builder to sleep..sheet [dimension]
- Opens the sheet to the given dimension. If the dimension is omitted, then the sheet will be opened for the current dimension..new bot
- Creates a new bot in the current dimension..download
- Downloads the entire universe..upload
- Shows the upload dialog..goto {dimension}
- Redirects the page portal to the given dimension..new universe {universeName}
- Creates a new universe with the given name and opens it in a new tab..show history
- Loads the history and goes to the auxHistory
dimension..mark history
- Creates a new history mark for the current state..show docs
- Opens the documentation website in a new tab..summon
- Summons the Builder helper into the current dimension..new builder {name}
- Creates a clone of the current builder with the given name..summon
command.~
key to show the char bar.3342
finger tap code on mobile to show the chat bar.5
finger tap on mobile to hide the chat bar.FAQs
A set of abstractions required to securely run an AUX.
The npm package @casual-simulation/aux-vm receives a total of 60 weekly downloads. As such, @casual-simulation/aux-vm popularity was classified as not popular.
We found that @casual-simulation/aux-vm 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.
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.