1.0.0 • Published 5 years ago

@ghaiklor/iterum v1.0.0

Weekly downloads
7
License
MIT
Repository
github
Last release
5 years ago

iterum

Travis (.com) branch Codecov branch Codacy branch grade GitHub last commit Maintenance ECMA-262 Coverage GitHub code size in bytes

GitHub followers Twitter Follow

Iterum (latin) means “again, a second time, repeatedly, once more, for the second time, anew,”. This is my another attempt to create a simple, but fully implemented interpreter for a subset of ECMA specification.

NOTE: This is an educational project, and it is not designed for use in production.

Why

For a last few years I was passionate about compilers, languages and similar stuff. And I am still passionate about it.

However, all my knowledge was based on theoretical knowledge and not on a practical one. So, I’ve written an interpreter to fasten it.

Key Concepts

iterum itself is implemented on top of these key concepts:

  • Recursive descent parser with a look-ahead by one character;
  • Parser for an ECMA subset emits ESTree;
  • Interpreter is implemented on top of traverser for different AST nodes;

Getting Started

iterum is packed as an npm package, so you can easily run it with npx:

npx @ghaiklor/iterum --help

Create a file somewhere on your machine with an iterum code:

// hello-world.js
function helloWorld() {
    print "Hello, World";
}

helloWorld();

If you want to take a look into AST generated from the file above:

npx @ghaiklor/iterum --print-ast hello-world.js

Otherwise, you can interpret it:

npx @ghaiklor/iterum --interpret hello-world.js

Contributing

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.

Please make sure to update tests as appropriate.

How It Works

You can find rough explanation here.

License

MIT License

1.0.0

5 years ago

0.6.0

5 years ago

0.5.0

5 years ago

0.4.0

5 years ago

0.3.0

5 years ago

0.2.0

5 years ago

0.1.0

5 years ago