microvium icon indicating copy to clipboard operation
microvium copied to clipboard

A compact, embeddable scripting engine for applications and microcontrollers for executing programs written in a subset of the JavaScript language.

Results 13 microvium issues
Sort by recently updated
recently updated
newest added

We'd like to be able to have a single instance of the microvium code, but allow different compartments to use it with different heaps. This requires our malloc / free...

# Async/await in Microvium I'm not "promising" that async/await will be implemented in Microvium, but it's on my radar. This GitHub ticket is a consolidation of my personal design notes...

enhancement

I don't know how many native functions I need to add in order to connect to some TCP ports. we need some demos like the ffi module, thanks.

enhancement

Sorry to bombard you with this stuff - this is not a priority but I thought I'd mention it. I've been playing with the options in the port file and...

Bumps [ip](https://github.com/indutny/node-ip) from 2.0.0 to 2.0.1. Commits 3b0994a 2.0.1 32f468f lib: fixed CVE-2023-42282 and added unit test See full diff in compare view [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=ip&package-manager=npm_and_yarn&previous-version=2.0.0&new-version=2.0.1)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any...

dependencies

As far as I see, even basics like [num] to access a character, or length property are not supported (there's a reference in the string test, but only as a...

enhancement

First of all thank you very much for the excellent project! I have created a simple port for esp32 in a couple of hours (https://github.com/hiperiondev/esp32-microvium) and the minimum test works...

I'm not sure if it's my implementation or an issue with the engine, but string comparison operators greater and smaller than are causing an abort. ```javascript let x = '0';...

enhancement

It seems there is an issue related to ```var``` declarations: ```javascript function main() { var x = 'before'; console.log(x); var x = 'after'; } main(); ``` The expected behaviour is...

bug