New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

metaes

Package Overview
Dependencies
Maintainers
1
Versions
21
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

metaes

JavaScript (ECMAScript) in JavaScript interpreter for better tools.

latest
Source
npmnpm
Version
4.7.0
Version published
Maintainers
1
Created
Source

CircleCI

MetaES

MetaES is a JavaScript metacircular interpreter. It is a building block for other libraries and tools. It was created to speed up applications development.

Try it out at the playground.

Installing

For the latest stable version:

npm install metaes

For dev builds:

npm install metaes@dev

Using MetaES

It's highly recommended to read docs first. You can skip it if you just want to use MetaES in a most basic way.

node.js example

const { metaesEval } = require("metaes");
metaesEval(`2+a`, console.log, console.error, { a: 2 });

For browser usage you have to create build yourself using tools like Webpack, Parcel or others.

will print out 4.

Documentation

Available at docs page.

Development

For development repository installation use following:

git clone git@github.com:metaes/metaes.git
cd metaes
npm install

Testing

npm test

Contribution

Use GitHub issues or pull requests.

License

MIT.

Keywords

interpreter

FAQs

Package last updated on 29 Nov 2021

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