javy VS js-compute-runtime

Compare javy vs js-compute-runtime and see what are their differences.

javy

JS to WebAssembly toolchain (by Shopify)

js-compute-runtime

JavaScript SDK and runtime for building Fastly Compute applications (by fastly)
Our great sponsors
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • WorkOS - The modern identity platform for B2B SaaS
  • SaaSHub - Software Alternatives and Reviews
javy js-compute-runtime
6 8
0 185
- 7.6%
5.3 9.3
12 months ago 4 days ago
Rust C++
Apache License 2.0 Apache License 2.0
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

javy

Posts with mentions or reviews of javy. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2022-12-15.
  • Are there plans for WebAssembly as compilation target?
    3 projects | /r/scala | 15 Dec 2022
    I don't think you can compile JS to WASM... You can run your JS code in a sandboxed runtime implemented in WebAssembly, which... I guess gives you sandboxing, but not much else.
  • Is it possible to run a containerized SvelteKit/Node-based website as WASM module?
    3 projects | /r/webdev | 14 Dec 2022
    Yes exactly! Thanks for nudging me in the direction of: - https://github.com/Shopify/javy - https://github.com/WebAssembly/design/issues/219
  • QuickJS Running in WebAssembly
    4 projects | news.ycombinator.com | 19 Nov 2022
    I’m not sure if anyone has done so yet for Go, but Shopify has done this for Rust.

    https://github.com/Shopify/javy/tree/main/crates/quickjs-was...

  • Wasmtime 1.0
    14 projects | news.ycombinator.com | 20 Sep 2022
    > - JS is notably missing from the list of languages supported on the front page. But I see mentions of a Spidermonkey.wasm in the blog post. Is running JS on top of wasmtime in production a realistic prospect today? If so, where can I read more? (mainly interested in this for the instantiation time benefits, though maybe all/most of that will be negated by the embedded JS engine?)

    Shopify and others use QuickJS as their JS engine of choice. See https://github.com/Shopify/javy as a starting point. The real benefit is allowing authors of plugins to write JS and not AssemblyScript, not any performance or instantiation time benefits.

    > - How should I go about building a typical web service on top of wasmtime? Can wasmtime itself handle network requests/connections or would I need to build the web server in some other host language and pass request data to wasmtime modules? Haven't been able to find anything in the docs about this.

    There are a lot of choices for this. None I would consider mature, but some leads:

    - https://github.com/deislabs/wagi

  • Announcing support for WASI on Cloudflare Workers
    1 project | /r/CloudFlare | 8 Jul 2022
    You will need to use something like javy which incidentally accepts input via stdin and produces output via stdout which would work perfectly (to my knowledge) as a wasi worker.
  • The State of WebAssembly 2022
    1 project | /r/programming | 20 Jun 2022
    yes it has, https://github.com/Shopify/javy among others

js-compute-runtime

Posts with mentions or reviews of js-compute-runtime. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-07-04.
  • What sorts of things would you consider to be “advanced” javascript concepts?
    3 projects | /r/learnjavascript | 4 Jul 2023
    There are multiple JavaScript runtimes. SpiderMonkey is one example that has nothing to do with Node.js, see (js-compute-runtime)[https://github.com/fastly/js-compute-runtime].
  • [AskJS] Has anybody implemented and compiled ServiceWorker specification to a standalone executable?
    19 projects | /r/javascript | 4 Mar 2023
  • JavaScript support hits 1.0 milestone on Compute@Edge
    4 projects | dev.to | 19 Dec 2022
    We listened to the community feedback, filled in feature gaps, and addressed many bugs in the SDK. Not only that, we’ve also overhauled the SDK reference docs making it easier for you to know what’s supported and how to implement the features. All the Fastly specific features of the JS SDK now have interactive example applications in the documentation.
  • Workerd: The Open Source Cloudflare Workers Runtime
    7 projects | news.ycombinator.com | 27 Sep 2022
  • Wasmtime 1.0
    14 projects | news.ycombinator.com | 20 Sep 2022
    These are good questions! Here's some answers from the corner of the world I know best as a Wasmtime contributor at Fastly:

    1. Spidermonkey.wasm is the basis of Fastly's JavaScript on Compute@Edge support. We have found it to be faster than QuickJS. The source code is here: https://github.com/fastly/js-compute-runtime.

    2. Fastly Compute@Edge is built on wasmtime. You can develop web services for it in Rust, JS, and Go: https://developer.fastly.com/learning/compute/

    3. Fastly's multi-tenant platform is closed source, but our single-tenant local development platform, which also uses wasmtime under the hood as well, is open source: https://github.com/fastly/viceroy. It isn't a big leap to make viceroy multi-tenant: Wasmtime provides everything you need, and all Viceroy would have to do is dispatch on e.g. HTTP host header to the correct tenant. Our multi-tenant platform is closed source because it is very specialized for use on Fastly's edge, not because the multi-tenant aspect is special.

  • Fastly Compute Edge JavaScript Runtime
    1 project | news.ycombinator.com | 24 Apr 2022
    1 project | news.ycombinator.com | 23 Apr 2022
  • Debunking Cloudflare’s recent performance tests
    5 projects | news.ycombinator.com | 6 Dec 2021
    btw. for what it's worth their javascript to wasm is opensource:

    - https://github.com/fastly/js-compute-runtime

    - https://github.com/tschneidereit/spidermonkey-wasi-embedding

    and besides that it is slower than nodejs it is still plenty fast (no matter that it is not as fast as they want) btw. it's startup is faster than node. (maybe better pgo might help)

What are some alternatives?

When comparing javy and js-compute-runtime you can also consider the following projects:

Viceroy - Viceroy provides local testing for developers working with Compute.

wasmtime - A fast and secure runtime for WebAssembly

wasmer - 🚀 The leading Wasm Runtime supporting WASIX, WASI and Emscripten

quickjs-rs - Rust wrapper for the quickjs Javascript engine.

wizard-engine - Research WebAssembly Engine

workerd - The JavaScript / Wasm runtime that powers Cloudflare Workers

spidermonkey-wasi-embedding

spidermonkey-wasi-embedding

define-function - quick.js based eval

miniflare - 🔥 Fully-local simulator for Cloudflare Workers. For the latest version, see https://github.com/cloudflare/workers-sdk/tree/main/packages/miniflare.

lunatic - Lunatic is an Erlang-inspired runtime for WebAssembly

now - Node on Web