Git Product home page Git Product logo

vm.js's Introduction

vm.js

Build Status Coverage Status License Prettier Node npm version Size

Run Javascript code in ECMAScript, without eval(), new Function(), setTimeout()...

It base on https://github.com/bramblex/jsjs

Try it out

Usage

import vm from "@axetroy/vm";

const sanbox = { console: console };

const context = vm.createContext(sanbox);

try {
  vm.runInContext(`console.log("Hello world");`, context);
} catch (err) {
  console.error(err);
}

Support

  • ECMA5
  • ES2015
    • Let and const
    • Block scoping
    • ES modules
    • Arrow functions
    • Class
    • Computed properties
    • Destructuring
    • For of
    • Function/Class name
    • Literals
    • Object super
    • Default and rest parameters
    • Shorthand properties
    • Spread
    • Template literals
    • Lifting template literal restriction
    • Unicode-regex
    • Generator function
  • ES2016
    • Exponentiation operator
  • ES2017
    • Trailing commas in function parameter lists and calls
    • Async functions
    • Shared memory and atomics
  • ES2018
    • Asynchronous iteration
    • Promise.prototype.finally()
    • s (dotAll) flag for regular expressions
    • RegExp named capture groups
    • RegExp Unicode Property Escapes
  • Experimental

Test

I have written a lot of test case for this, look at here

Now it still in development, got a lot of work to do and more detail to resolve.

I will release the first stable version of write 500 test case.

If you want to join it. welcome to PR.

How to run a single test

npx tsc && npx ava ./build/test/ecma5/array/

How to run the whole test

npm run test

Related

bramblex/jsjs

jkeylu/evil-eval

Contributors


Axetroy

๐Ÿ’ป ๐Ÿ”Œ โš ๏ธ ๐Ÿ› ๐ŸŽจ

License

The MIT License

vm.js's People

Contributors

axetroy avatar greenkeeper[bot] avatar

Watchers

James Cloos avatar Ella avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.