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

@ghaiklor/iterum

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@ghaiklor/iterum

Yet another attempt to create VM with its own language and intermediate representation

  • 1.0.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

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

FAQs

Package last updated on 02 Jul 2019

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