Security News
PyPI Introduces Digital Attestations to Strengthen Python Package Security
PyPI now supports digital attestations, enhancing security and trust by allowing package maintainers to verify the authenticity of Python packages.
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
Continuum probably works in every modern engine, but has not been tested.
Currently known to work in:
Will soon work in:
In the browser, use the combined continuum.js or continuum.min.js. In node
npm install continuum
In the browser, a function named continuum
is added to the window. In Node.js, the continuum
function is 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 language, 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 isntance, such as the list of "intrinsics" or 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"', function(result){
// statements and declarations have no return value so result is undefined in this case, however...
console.log(realm.evaluate('F')) // $Module with Function, call, apply, and bind (functional versions)
})
module std = '@std'
or import call from '@Function'
Core API:
Extras:
Additionally exported is the class objects Assembler
, Realm
, Renderer
, and Script
.
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 equivelent to an iframe or a node vm context.
VM Events These are emitted by the VM to indicate changes to the state of execution and provide access to information about related objects.
debugger
statement is encountered. A function which will resume execution is passed to the callback, and is also available as realm.resume
.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.
A renderer is a visitor used to introspect VM objects and values.
An assembler is used to convert AST into bytecode and static script information.
A script contains all the bits related to a given chunk of source. The given options, sourcecode string, AST, bytecode, and the thunk (lazily created upon first execution). Scripts don't contain realm-specific information, so they are portable between realms/globals and can be executed multiple times as needed.
FAQs
A JavaScript (ES6) bytecode virtual machine written in JavaScript
The npm package continuum receives a total of 1 weekly downloads. As such, continuum popularity was classified as not popular.
We found that continuum demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
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.
Security News
PyPI now supports digital attestations, enhancing security and trust by allowing package maintainers to verify the authenticity of Python packages.
Security News
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.