You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Dec 29, 2023. It is now read-only.
I am working on finding out what the best way of embedding an es6 runtime would be.
It seems like both goja and otto don't support es6.
I am considering using Deno for several reasons.
It has native TS Support
It can compile to binaries
It uses URL imports instead of node modules
However, it appears that this might not work due to Rusty V8 having no musl support. This means that I cannot build deno into a static binary to run on the kernel level.
Edit: It seems like node.js with https://koffi.dev/ might be the best way for now.
The text was updated successfully, but these errors were encountered:
I've decided to go with Node for the time being. However, I am looking into Alexander's typescript compiler and I may use it in the future. The only downside is that the configuration has to be rebuilt instead of dynamically included at runtime. However, the performance benefits may allow more complicated programs to be written in TypeScript (such as a desktop environment).
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
I am working on finding out what the best way of embedding an es6 runtime would be.
It seems like both goja and otto don't support es6.
I am considering using Deno for several reasons.
However, it appears that this might not work due to Rusty V8 having no musl support. This means that I cannot build deno into a static binary to run on the kernel level.
Edit: It seems like node.js with https://koffi.dev/ might be the best way for now.
The text was updated successfully, but these errors were encountered: