sachasi / kimera

🦁 A Super fast and lightweight runtime for JavaScript Scripts

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Kimera.js

GitMoji License: MIT Lines Of Code CodeQL Go Report Card

A super fast and lightweight JavaScript Runtime for Scripts.

Getting Started

// myScript.js
const asyncSayHello = async (text) => {
  console.log(text);
};

(async () => await asyncSayHello("Hello World!"))();
$ kimera run myScript.js
Hello World!

REPL

kimera

Installation

go install github.com/UltiRequiem/kimera@latest

License

This project is licensed under the MIT LICENSE.

About

🦁 A Super fast and lightweight runtime for JavaScript Scripts

License:MIT License


Languages

Language:Go 82.2%Language:JavaScript 17.8%