Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@casual-simulation/aux-vm-deno

Package Overview
Dependencies
Maintainers
0
Versions
367
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@casual-simulation/aux-vm-deno

A set of utilities required to securely run an AUX in Deno.

  • 3.3.15
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
148
decreased by-35.37%
Maintainers
0
Weekly downloads
 
Created
Source

AUX VM Deno

npm (scoped)

A set of utilities required to run an AUX in Deno.

Installation

  1. Install the NPM package
npm install @casual-simulation/aux-vm-deno
  1. Add the DenoEntry.ts file to your Webpack config:
entry: {
    deno: path.resolve(
        __dirname,
        'node_modules',
        '@casual-simulation',
        'aux-vm-deno',
        'vm',
        'DenoEntry.ts'
    ),
},
  1. Specify a specific output filename for the deno bundle.
output: {
    filename: (pathData) => {
        return pathData.chunk.name === 'deno' ? '[name].js' : '[name].[contenthash].js';
    },
}

Keywords

FAQs

Package last updated on 19 Dec 2024

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc