metaes v4.7.0
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 metaesFor dev builds:
npm install metaes@devUsing 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 installTesting
npm testContribution
Use GitHub issues or pull requests.
License
MIT.
4 years ago
4 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
6 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago