npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

duktape-vm

v0.1.4

Published

Javascript VM running in WebAssembly

Downloads

37

Readme

Duktape Javascript Virtual Machine

NPM

This project is a wrapper around the Duktape Embedded Javascript Engine compiled to webassembly/asmjs.

  • Airtight sandbox for unsafe js code.
  • Kills unresponsive scripts after 10 seconds (Prevents while(true) {} lock up).
  • Restricted code (impossible to access node.js or window methods and objects).
  • Runs in modern web browsers using Webassembly with asmjs fallback.
  • Runs on anything that supports NodeJS 8 or greater (zero native code/compilation).
  • VM supports ES5 and earlier javascript with async and sync exection.
  • Supports bidirectional messaging and asynchronous operations.
  • Only 110KB gzipped.

Quick Example

DuktapeVM().then((vm) => {
    vm.eval("2 + 2") // returns "4";
    vm.eval("var testObj = {foo: 'bar'};");
    vm.eval("testObj.foo") // returns "bar";

    vm.evalAsync(` 
        setTimeout(function() {
            _success("hello, world!");
        }, 1000);`, 
    ).then((res) => {
        console.log(res) // hello, world!
    })
});

Installation

npm i duktape-vm --save

Using in Typescript/Babel project:

import { DuktapeVM } from "duktape-vm";

Using in Node:

const DuktapeVM = require("duktape-vm").DuktapeVM;

To use directly in the browser, drop ONE of the tags below into your <head>.

The library will attach DuktapeVM to window/global, allowing you to access it anywhere in your code.

<!-- Webassembly Only Version (Fast with 75% browser support), 110KB -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/build/duktape-vm.min.js"></script>

<!-- AsmJS Only Version (Slower with 95% browser support), 115KB -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/build/duktape-vm.min.asm.js"></script>

<!-- Webassembly with AsmJS fallback (Fast with 95% browser support), 220KB -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/build/duktape-vm.min.both.js"></script>

Virtual Machine Available Globals

The vm doesn't expose any platform specific methods like window, document, global, fetch or anything like that. Only a subset of APIs are available: setInterval, setTimeout, clearTimeout, clearInterval, Date, Array, String, Number, Object, RegExp, JSON, parseInt, isNaN and Promise.

Additional methods and variables can be provided by passing them into the DuktapeVM constructor.

Setup & Usage

DuktapeVM(`
    // Provide data and methods to VM instance
    // vm_breakout() allows you to eval code in the parent window/global space.
    // vm_breakout is only available here, it's not available in subsequent "vm.eval" or "vm.evalAsync" calls.

    // all methods should be attached to the exports object
    exports.console = function(message) {
        // print to parent console
        vm_breakout("console.log('" + message + "');")
    };
    
    // you can also inline js libraries here
    // global scope is available on the variable "self"
`).then((vm) => {
    // vm contains the javascript vm reference

    // Standard eval
    let value = vm.eval("2 + 2"); // value contains "4";

    // Eval with arguments
    // arguments are passed as array called "args"
    // when you use arguments you muse use "return" if you want to get the value back.
    vm.eval(`return args[0] + args[1]`, [2, 3]); // returns 5

    // Messaging API
    vm.eval(`
        exports.onMessage(function(msg) {
            // got message from parent!
        })
        
        // send message to parent
        exports.message("some message to parent");
    `);

    // Send message to vm
    vm.message("this is a message to the vm");

    // Listen for messages from vm
    vm.onMessage((msg) => {
        console.log("Got message from vm: " + msg);
    });

    // Async eval
    // use _success and _error as callbacks 
    vm.evalAsync(`
        setTimeout(function() {

            _success("done!");
            // _error("something went wrong!");

        }, 1000);
    `).then((result) => {
        console.log(result) // "done"
    });

    // Async Eval with arguments
    // arguments are passed in as "args" array
    vm.evalAsync(`
        setTimeout(function() {

            _success(args[0]);
            // _error("something went wrong!");
        }, 1000);
    `, ["hello world!"]).then((result) => {
        console.log(result) // "hello world!"
    });

    // reload vm
    // dumps the stack, makes a new one, then runs the init code again
    vm.reset();

    // destroy vm
    vm.destroy();
})

MIT License

Copyright (c) 2018 Scott Lott

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.