Duktape

Duktape - embeddable Javascript engine with a focus on portability and compact footprint (by svaarala)

Duktape Alternatives

Similar projects and alternatives to Duktape

  1. rust

    2,801 Duktape VS rust

    Empowering everyone to build reliable and efficient software.

  2. CodeRabbit

    CodeRabbit: AI Code Reviews for Developers. Revolutionize your code reviews with AI. CodeRabbit offers PR summaries, code walkthroughs, 1-click suggestions, and AST-based analysis. Boost productivity and code quality across all major languages with each PR.

    CodeRabbit logo
  3. yt-dlp

    2,387 Duktape VS yt-dlp

    A feature-rich command-line audio/video downloader

  4. youtube-dl

    1,085 Duktape VS youtube-dl

    Command-line program to download videos from YouTube.com and other video sites

  5. nitter

    960 Duktape VS nitter

    Alternative Twitter front-end

  6. mpv

    854 Duktape VS mpv

    🎥 Command line video player

  7. Playwright

    463 Duktape VS Playwright

    Playwright is a framework for Web Testing and Automation. It allows testing Chromium, Firefox and WebKit with a single API.

  8. kitty

    314 Duktape VS kitty

    Cross-platform, fast, feature-rich, GPU based terminal

  9. SaaSHub

    SaaSHub - Software Alternatives and Reviews. SaaSHub helps you find the best software and product alternatives

    SaaSHub logo
  10. WebKit

    174 Duktape VS WebKit

    Home of the WebKit project, the browser engine used by Safari, Mail, App Store and many other applications on macOS, iOS and Linux.

  11. cmake-init

    The missing CMake project initializer

  12. quickjs

    Public repository of the QuickJS Javascript Engine.

  13. jerryscript

    Ultra-lightweight JavaScript engine for the Internet of Things.

  14. ChakraCore

    15 Duktape VS ChakraCore

    ChakraCore is an open source Javascript engine with a C API.

  15. V8

    60 Duktape VS V8

    The official mirror of the V8 Git repository

  16. Espruino

    The Espruino JavaScript interpreter - Official Repo

  17. V7

    3 Duktape VS V7

    Embedded JavaScript engine for C/C++

  18. fbpdf

    A small framebuffer pdf, djvu, epub, xps, and cbz viewer

  19. Lua

    0 Duktape VS Lua

    Discontinued Lua is a powerful, efficient, lightweight, embeddable scripting language. It supports procedural programming, object-oriented programming, functional programming, data-driven programming, and data description. (by LuaDist)

  20. ChakraCore

    3 Duktape VS ChakraCore

    Discontinued ChakraCore is an open source Javascript engine with a C API. [Moved to: https://github.com/chakra-core/ChakraCore] (by Microsoft)

  21. Wren

    46 Duktape VS Wren

    The Wren Programming Language. Wren is a small, fast, class-based concurrent scripting language.

  22. InsideReCaptcha

    Reverse-engineering the new “captchaless” ReCaptcha system...

  23. SaaSHub

    SaaSHub - Software Alternatives and Reviews. SaaSHub helps you find the best software and product alternatives

    SaaSHub logo
NOTE: The number of mentions on this list indicates mentions on common posts plus user suggested alternatives. Hence, a higher number means a better Duktape alternative or higher similarity.

Duktape discussion

Log in or Post with

Duktape reviews and mentions

Posts with mentions or reviews of Duktape. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-05-04.
  • Roll your own JavaScript runtime, pt. 3
    3 projects | news.ycombinator.com | 4 May 2023
  • How to Create a Modern C Project with CMake and Conan
    2 projects | /r/C_Programming | 26 Apr 2023
    Im my projects I search for single file libs.(like https://github.com/svaarala/duktape etc...)
  • Is there anyway to bypass the limit of rand()?
    1 project | /r/C_Programming | 20 Nov 2022
    Use lrand48(), or better, implement a high-quality RNG like PCG or splitmix64.
  • Libgrapheme: A simple freestanding C99 library for Unicode
    6 projects | news.ycombinator.com | 15 Nov 2022
    You can also refer to the Unicode routines of other small JS engines[1,2], those don’t use ICU either, although the implementations are mercilessly size-optimized (to put it politely) and restricted to what the target JS version requires (e.g. casemapping but no normalization).

    [1] https://github.com/bellard/quickjs/blob/master/libunicode.c

    [2] https://github.com/svaarala/duktape/blob/master/src-input/du...

  • Duktape
    1 project | news.ycombinator.com | 8 Oct 2022
  • Nan Boxing
    3 projects | news.ycombinator.com | 16 Sep 2022
  • YouTube-dl has a JavaScript interpreter written in 870 lines of Python
    19 projects | news.ycombinator.com | 10 Sep 2022
    I was expecting this to be about Duktape <https://github.com/svaarala/duktape>, but heh, for sure no. I'd bet $1 there's no way youtube-dl would switch, but I wonder if yt-dlp would?
  • Optimizations Enabled by -ffast-Math
    1 project | news.ycombinator.com | 20 Oct 2021
    Fast math optimizations can break code like this by breaking isNaN.

    I was porting a C++ project to a certain platform - and that platform enabled a -ffast-math equivalent by default in Release (but not Debug) builds! This broke duktape, a JS engine said project embedded, in some nasty and subtle ways. Instead of storing a number/pointer/??? (8 bytes) + type tag (4? bytes) for each dynamically typed JS value, duktape can bit-pack values into a single 8 byte "double" value by storing object/string handles as NaN values - this isn't an uncommon trick for dynamically typed scripting stuff:

    https://github.com/svaarala/duktape/blob/c3722054ea4a4e50f48...

    Naturally, the -ffast-math equivalent broke isNaN checks, which caused random object/string handles to be mistakenly reinterpreted as "numbers" - but only in Release builds, for this one particular platform, in one rarely taken branch, so neither QA nor CI caught it, leading to hours of manufacturing a repro case, stepping through an absurd amount of code, and then finally looking at the default build rules and facepalming.

    Cursing the platform vendor under my breath, I overrode the defaults to align with the defaults of every other config x platform combination we already had: no fast math. If you want those optimizations, use SSE-friendly NaN-avoiding intrinsics - or, if you must use the compiler flags, ensure you do so consistently across build configs and platforms, perhaps limited to a few TUs or modules if possible. This allows you to have a chance at using your Debug builds to debug the resulting "optimizations".

  • Can C++ and JS be used together?
    1 project | /r/learnprogramming | 27 Apr 2021
    Sure. For example, DukTape is an implementation of Javascript designed to be embedded in other projects. Google's V8 Javascript engine (used in Chrome), can also be embedded, see Node.Js for example.
  • [AskJS] Do you use JavaScript on Microcontrollers? Which engine / interpreter?
    5 projects | /r/javascript | 30 Mar 2021
    - Duktape (4.8k stars)
  • A note from our sponsor - SaaSHub
    www.saashub.com | 19 Mar 2025
    SaaSHub helps you find the best software and product alternatives Learn more →

Stats

Basic Duktape repo stats
10
6,015
6.4
12 months ago

svaarala/duktape is an open source project licensed under MIT License which is an OSI approved license.

The primary programming language of Duktape is JavaScript.


Sponsored
CodeRabbit: AI Code Reviews for Developers
Revolutionize your code reviews with AI. CodeRabbit offers PR summaries, code walkthroughs, 1-click suggestions, and AST-based analysis. Boost productivity and code quality across all major languages with each PR.
coderabbit.ai

Did you know that JavaScript is
the 3rd most popular programming language
based on number of references?