quickjs VS sciter-js-sdk

Compare quickjs vs sciter-js-sdk and see what are their differences.

quickjs

Public repository of the QuickJS Javascript Engine. (by bellard)

sciter-js-sdk

Sciter.JS - Sciter but with QuickJS on board instead of my TIScript (by c-smile)
InfluxDB – Built for High-Performance Time Series Workloads
InfluxDB 3 OSS is now GA. Transform, enrich, and act on time series data directly in the database. Automate critical tasks and eliminate the need to move data externally. Download now.
www.influxdata.com
featured
Stream - Scalable APIs for Chat, Feeds, Moderation, & Video.
Stream helps developers build engaging apps that scale to millions with performant and flexible Chat, Feeds, Moderation, and Video APIs and SDKs powered by a global edge network and enterprise-grade infrastructure.
getstream.io
featured
quickjs sciter-js-sdk
76 44
9,375 1,632
1.7% -
9.4 9.3
10 days ago about 3 years ago
C Pawn
GNU General Public License v3.0 or later BSD 3-clause "New" or "Revised" License
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.

quickjs

Posts with mentions or reviews of quickjs. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2025-05-22.
  • SQLite JavaScript: Extend your database with JavaScript
    7 projects | news.ycombinator.com | 22 May 2025
    This is a fantastic approach.

    BTW, it looks like the js engine is "QuickJS" [0]. (I'm not familiar with it myself.)

    I like it because sqlite by itself lacks a host language. (e.g., Oracle's plsql, Postgreses pgplsql, Sqlserver's t-sql, etc). That is: code that runs on compute that is local to your storage.

    That's a nice flexible design -- you can choose whatever language you want. But quite typically you have to bring one, and there are various complications to that.

    It's quite powerful, BTW, to have the app-level code that acts on the app data live with the data. You can present cohesive app-level abstraction to the client (some examples people will hopefully recognize: applyResetCode(theCode) or authenticateSessionToken(), or whatever), which can be refined/changed without affecting clients. (Of course you still have to full power and flexibility of SQL and relational data for the parts of your app that need it.)

    [0] https://bellard.org/quickjs/

  • JSLinux
    13 projects | news.ycombinator.com | 14 Apr 2025
    Considering the extremes of prolific developers gives interesting contrast to dogmas such as "functions/files should never be above x lines", where `quickjs.c` is 50k lines and has functions that are hundreds of lines long:

    https://github.com/bellard/quickjs/blob/master/quickjs.c

    (Obviously different approaches suites different circumstances.)

  • QuickJS JavaScript Engine
    1 project | news.ycombinator.com | 12 Apr 2025
    1 project | news.ycombinator.com | 3 Nov 2024
  • Servo in 2024: stats, features and donations
    17 projects | news.ycombinator.com | 5 Feb 2025
    And some lightweight alternatives like Bellard's QuickJS (https://bellard.org/quickjs/) in C and Kiesel (https://kiesel.dev/) in Zig.
  • Building Static HTML Pages with JSX Server-Side Rendering
    8 projects | dev.to | 13 Jan 2025
    Built on a highly optimized JavaScript runtime powered by QuickJS, Query offers fast startup times and efficient execution. Its built-in caching mechanism further enhances performance by storing function responses, reducing database load and latency. This focus on speed makes Query a standout choice for server-side rendering, especially in applications with many components.
  • Lua Is So Underrated
    27 projects | news.ycombinator.com | 26 Dec 2024
  • Introducing our Next-Generation JavaScript SDK
    4 projects | dev.to | 25 Nov 2024
    Where the previous SDK was built on top of the QuickJS JavaScript engine and the Javy runtime, the new SDK is built on top of the Firefox browser’s SpiderMonkey engine, and the Bytecode Alliance’s StarlingMonkey runtime and ComponentizeJS WIT bindings generator.
  • QuickJS: Handle Typescript Sourcemap
    2 projects | dev.to | 10 Aug 2024
    I'm currently using Bellard's QuickJS engine on a new TypeScript project.
  • [Lab] AWS Lambda LLRT vs Node.js
    4 projects | dev.to | 15 May 2024

sciter-js-sdk

Posts with mentions or reviews of sciter-js-sdk. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2025-07-10.
  • Open source alternative to Perplexity Comet
    4 projects | news.ycombinator.com | 10 Jul 2025
    good callout wrt being slower than JIT. ofc for certain applications it's not a showstopper, ie, if you're not using javascript for your MVC but doing more of a progressive enhancement thing.

    CSS2 is closer to trivial, but CSS3 is practically a 3D game engine with all of its matrix transforms, transitions, animations, variables - not to mention all the different layout schemes (Sciter blogged about introducing display:flex and display:grid two months ago)

    The most interesting part of Sciter to me is that data persistence goes way beyond localStorage (string key: string value) or filesystem API, instead it's DyBase [0][1] behind the scenes, which looks to be a very intriguing style of storing trees of data in the host language's datatype (including whatever classes you define) without mucking about with the leaky abstractions of an ORM.

    [0] https://github.com/c-smile/sciter-js-sdk/blob/main/docs/md/s...

    [1] http://www.garret.ru/dybase.html

  • GameScripter.JS — write games in JS, compile to tiny executable
    3 projects | /r/coolgithubprojects | 28 Sep 2022
    How tiny is the output? What is the API? (I couldn't find any documentation. I thought maybe it's in the Help menu in the app itself but all I found was this https://i.imgur.com/6puOMIe.png - On that note, what level of JS is supported? As far as I can tell it uses this https://github.com/c-smile/sciter-js-sdk which is based on Fabrice Bellard's QuickJS ) Is there sound?
  • What technologies to use for a desktop app
    1 project | /r/AskProgramming | 5 Jul 2022
    JavaScript & Electron Sciter!
  • Ultralight VS sciter-js-sdk - a user suggested alternative
    2 projects | 4 Apr 2022
  • Ask HN: Why aren't there any real alternatives to Electron?
    11 projects | news.ycombinator.com | 26 Mar 2022
  • Zig Build System Internals
    2 projects | news.ycombinator.com | 25 Feb 2022
    Having normal procedural language for build automation is of course useful. That's for those 10% of cases when "standard" build DSL (make,CMake,etc.) simply do not have facilities.

    But the rest of 90% tasks should have compact (easily readable) definitions.

    I personally found that Premake5 has quite good balance for these tasks.

    Premake files are plain .lua files and due to Lua syntax they are easily readable. And if needed you can call from them procedures defined in again Lua.

    So typical project (multiplatform) definition looks pretty readable, for example one project from Sciter SDK:

    https://github.com/c-smile/sciter-js-sdk/blob/main/premake5....

  • Alternatives for realtime offline-first JavaScript applications
    3 projects | /r/programming | 22 Jan 2022
    More details.
  • App Localization in Flutter
    2 projects | /r/programming | 16 Jan 2022
    That's why in Sciter I've extended JSX with translation meta instruction @:
  • Tauri – Electron alternative written in Rust
    17 projects | news.ycombinator.com | 5 Jan 2022
    Note Tauri is full fledged Client/Server with WebView (client) is running in separate process with RPC between UI process and Rust code (Server).

    For the comparison:

    Standalone Sciter (scapp.exe, https://github.com/c-smile/sciter-js-sdk/tree/main/bin) takes ~8 MB of RAM (with minimal Cairo and GDI backends).

    That's 20 times less than even Tauri.

    WebView based solutions are not suitable for applets - small portable desktop applications.

  • Dioxus v0.1 - a new Rust GUI toolkit for Web, Desktop, Mobile, SSR, TUI that emphasizes developer experience [WebView-based rendering]
    4 projects | /r/programming | 4 Jan 2022
    scapp.exe ( Standalone sciter engine ) takes 45 Mb showing its default "about" document.

What are some alternatives?

When comparing quickjs and sciter-js-sdk you can also consider the following projects:

Duktape - Duktape - embeddable Javascript engine with a focus on portability and compact footprint

vue-native-core - Vue Native is a framework to build cross platform native mobile apps using JavaScript

LuaJIT - Mirror of the LuaJIT git repository

react-native-web - Cross-platform React UI packages

jerryscript - Ultra-lightweight JavaScript engine for the Internet of Things.

leaflet-geoman - 🍂🗺️ The most powerful leaflet plugin for drawing and editing geometry layers

InfluxDB – Built for High-Performance Time Series Workloads
InfluxDB 3 OSS is now GA. Transform, enrich, and act on time series data directly in the database. Automate critical tasks and eliminate the need to move data externally. Download now.
www.influxdata.com
featured
Stream - Scalable APIs for Chat, Feeds, Moderation, & Video.
Stream helps developers build engaging apps that scale to millions with performant and flexible Chat, Feeds, Moderation, and Video APIs and SDKs powered by a global edge network and enterprise-grade infrastructure.
getstream.io
featured

Did you know that C is
the 6th most popular programming language
based on number of references?