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

continuum

Package Overview
Dependencies
Maintainers
1
Versions
30
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

continuum

A JavaScript (ES6) bytecode virtual machine written in JavaScript

  • 0.0.8
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
2
Maintainers
1
Weekly downloads
 
Created
Source

Continuum - A JavaScript Virtual Machine Built in JavaScript

Continuum is a JavaScript virtual machine built in JavaScript. It assembles bytecode from sourcecode and executes it an ES6 runtime environment. The code of the VM is written in ES3 level JavaScript, which means it can run in browsers as old as IE6. (though currently it's only been tested in IE9+ and there's probably some kinks to work out in older IE's).

ES6 is still an unfinished specification and is still a moving target

Compatibility

Continuum probably works in every modern engine, but has not been tested.

Currently known to work in:

  • IE8+
  • Chrome 23+
  • Firefox 15+
  • Opera 12+

Will soon work in:

  • IE6-7

screenshot

Installation

In the browser, use the combined continuum.js or continuum.min.js. In node

npm install continuum

Quickstart Usage Overview

In the browser an object named continuum is added to the window, or in node it's the object returned by require('continuum').

Usage of continuum is quite simple and can basically be treated like using eval or node's vm.runInContext. Supply the code, get the result. In ES6 a "Realm" is basically the container for a context. A Realm has a 'global' property which is its global object, and a number of properties that specific to each Realm instance, such as the list of builtins like Array, Function, Object, etc.

var realm = continuum.createRealm();

var $array = realm.evaluate('[5, 10, 15, 20]');

// you can use the ES internal functions to directly interact with objects
console.log($array.Get(0)) // 5
console.log($array.Get('map')) // $Function object

// these two lines have the same result
var $Function = realm.evaluate('Function');
var $Function = realm.global.Get('Function');

// if your code uses the module system then it must be run asynchronously
realm.evaluateAsync('module F = "@function"; F', function(result){
  console.log(result) // $Module { Function, call, apply, bind }
});

ES6 Implementation Status

Implemented

  • destructuring assignment and arguments
  • spread in arguments and array initializers
  • rest parameters
  • classes and super
  • arrow functions
  • block scope
  • new Math functions
  • new Object functions
  • new String functions
  • concise methods in object literals
  • mutable and deletable proto
  • Map, Set, and WeakMap (garbage collection semantics not fully realized)
  • Iterators and for...of
  • Templates
  • Module system with imports and exports
  • builtin '@std' modules module std = '@std' or import call from '@function'
  • Generators (kind of broken at the moment though)
  • Proxy and Reflect
  • Private Names

Soon to be Implemented

  • Array Comprehensions
  • Default parameters
  • Tail call optimization
  • Binary data api

API Overview

Core API

  • createRealm([callback]) Creates a new realm (context + global object). Optional debug callback for massive information.
  • createScript(code|filename) Creates a Script object which can be executed.
  • createCode(code|filename) Creates bytecode from the given source and returns it unexecuted (this will be serializable to disk soon).
  • createRenderer(handlers) For debug rendering, like the debugger UI.
  • createFunction(func) Wraps a regular function as a function object that can be used inside the VM.
  • introspect($object) Return a debug Mirror object that wraps any type of VM object, primitive, or scope object. This provides an easy to use and normalized interface for querying information about objects.

Extras

  • utility Contains a substantial amount of useful functionality used in continuum and generally useful in any JS.
  • constants All of the large amount of constants and symbols used by the VM.
  • iterate A utility function that exposes custom iterators in ES6 style (StopIteration, next, etc.). Most of the data structures used in continuum define custom iterators that work with this.

API Classes In Depth

Realm

A Realm is the main thing you interact with. Each realm has a global object with a unique set of builtin globals. A realm is roughly equivalent to an iframe or a node vm context.

  • realm.evaluate(code) Executes code in the virtual machine and returns the completion value, if any. "code" can be a string or an already compiled Script object. If a string is provided, a new Script will be created and added to realm.scripts.
  • realm.evaluateAsync(code, callback, [errback]) Primarily for when executing code that uses the module system, which must be run asynchronously if importing remote resources.

State Events

These are emitted by the VM to indicate changes to the state of execution and provide access to information about related objects.

  • realm.on('complete', function(result){}) emitted whenever a script completes execution. The result value is the same value that's returned from realm.evaluate.
  • realm.on('executing', function(thunk){}) emitted whenever execution begins or resume. The thunk is the object which executes the bytecode.
  • realm.on('throw', function(exception){}) throw is emitted on uncaught exception. The thrown object (usually an $Error) will be passed to the callback.
  • realm.on('pause', function(resume){}) pause is emitter when a debugger statement is encountered. A function which will resume execution is passed to the callback, and is also available as realm.resume.
  • realm.on('resume', function(){}) emitted when the resume function provided from the pause event is called and execution begins again.
  • realm.on('op', function(op){}) emitted every time an opcode is executed. Be very careful when listening to this event. A small to medium sized chunk of code can emit hundreds of thousands or millions of ops in a very short amount of time.

API Events

These are emitted by functions from inside the VM to simulate things like input/output and require some implementation on your part to do anything useful.

  • realm.on('write', function(text, color){}) emitted by stdout.write, which is used by console.log and friends.
  • realm.on('clear', function(){}) emitted by stdout.clear to provide a way to clear whatever it is you're providing as stdout
  • realm.on('backspace', function(number){}) emitted by stdout.backspace to provide a way to delete a specific amount of characters from the end.

Renderer

A Renderer is a visitor used to introspect VM objects and values.

...TODO docs...

Assembler

An Assembler is used to convert AST into bytecode and static script information.

...TODO docs...

Script

A Script object contains all the static information about a chunk of code: the given options, original source, AST, bytecode, and the compiled thunk that executes the bytecode. Scripts don't contain runtime information so they are portable between realms and can be executed multiple times. When using realm.evaluate or realm.evaluateAsync with a Script, it can be executed directly without compiling again.

...TODO docs...

Code

A Code object contains the compiled bytecode of a Script. It also contains most of the static semantics derived from the source such as bound names, declarations, imports/exports, etc. In the short term future it is planned for Code objects to be serializable to a portable form such that code can be compiled once and then redistributed and executed in this form.

...TODO docs...

Todo

  • Pass test262 (at least get to the point of only failing specific tests on purpose)
  • External interface to the DOM/Node.js
  • Serializable bytecode
  • Full dev environment built around Continuum
  • Bootstrap the runtime by compiling it to bytecode and self-executing
  • Massive work on optimizations
  • IE6/7

FAQs

Package last updated on 20 Nov 2012

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