GithubHelp home page GithubHelp logo

hhy5277 / vm.js Goto Github PK

View Code? Open in Web Editor NEW

This project forked from axetroy/vm.js

0.0 1.0 0.0 5.45 MB

Javascript 解释器. Javascript Interpreter

Home Page: https://axetroy.github.io/vm.js

License: MIT License

TypeScript 100.00%

vm.js's Introduction

vm.js

Build Status Coverage Status DeepScan grade 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

License

The MIT License

vm.js's People

Contributors

axetroy avatar renovate-bot avatar renovate[bot] avatar greenkeeper[bot] avatar dcy0701 avatar

Watchers

 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.