Popularity
9.7
Stable
Activity
9.9
-
22,633
964
3,902

Code Quality Rank: L1
Programming language: C++
License: GNU General Public License v3.0 or later
Tags: Scripting    
Latest version: v8.3.35

V8 alternatives and similar libraries

Based on the "Scripting" category.
Alternatively, view V8 alternatives based on common mentions on social networks and blogs.

  • ChakraCore

    DISCONTINUED. ChakraCore is an open source Javascript engine with a C API. [Moved to: https://github.com/chakra-core/ChakraCore]
  • Cython

    9.1 9.8 L2 V8 VS Cython
    The most widely used Python to C compiler
  • The APIs are flexible and easy-to-use, supporting authentication, user identity, and complex enterprise features like SSO and SCIM provisioning.
    Promo workos.com
    WorkOS Logo
  • SWIG

    8.5 9.7 L5 V8 VS SWIG
    SWIG is a software development tool that connects programs written in C and C++ with a variety of high-level programming languages.
  • Wren

    8.5 0.0 V8 VS Wren
    The Wren Programming Language. Wren is a small, fast, class-based concurrent scripting language.
  • Duktape

    8.3 6.4 L2 V8 VS Duktape
    Duktape - embeddable Javascript engine with a focus on portability and compact footprint
  • JavaCpp

    8.0 6.8 L1 V8 VS JavaCpp
    The missing bridge between Java and native C++
  • sol2

    7.8 3.9 V8 VS sol2
    Sol3 (sol2 v3.0) - a C++ <-> Lua API wrapper with advanced features and top notch performance - is here, and it's great! Documentation:
  • djinni

    DISCONTINUED. A tool for generating cross-language type declarations and interface bindings. [Apache2]
  • libffi

    A portable foreign-function interface library.
  • CppSharp

    7.6 7.9 L2 V8 VS CppSharp
    Tools and libraries to glue C/C++ APIs to high-level languages
  • ChaiScript

    Embedded Scripting Language Designed for C++
  • Lua

    7.1 0.0 L3 V8 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.
  • nbind

    :sparkles: Magical headers that make your C++ library accessible from JavaScript :rocket:
  • ctypes.sh

    A foreign function interface for bash.
  • V7

    6.2 1.8 L3 V8 VS V7
    Embedded JavaScript engine for C/C++
  • cppimport

    Import C++ files directly from Python!
  • v8pp

    5.1 5.5 L4 V8 VS v8pp
    Bind C++ functions and classes into V8 JavaScript engine
  • luacxx

    2.9 0.0 L1 V8 VS luacxx
    C++11 API for creating Lua bindings
  • nelson

    The Nelson Programming Language
  • shpp

    2.2 0.0 L4 V8 VS shpp
    Call c++ functions from a shell with any arguments of any types parsed automatically
  • tbing

    Templates-based bindings and interfaces generator for C++
  • Boost.Python

    A C++ library which enables seamless interoperability between C++ and the Python programming language. [Boost]
  • SIP

    C/C++ Bindings Generator for Python v2 and v3. [GPL]

Do you think we are missing an alternative of V8 or a related project?

Add another 'Scripting' Library

README

V8 JavaScript Engine

V8 is Google's open source JavaScript engine.

V8 implements ECMAScript as specified in ECMA-262.

V8 is written in C++ and is used in Google Chrome, the open source browser from Google.

V8 can run standalone, or can be embedded into any C++ application.

V8 Project page: https://v8.dev/docs

Getting the Code

Checkout depot tools, and run

    fetch v8

This will checkout V8 into the directory v8 and fetch all of its dependencies. To stay up to date, run

    git pull origin
    gclient sync

For fetching all branches, add the following into your remote configuration in .git/config:

    fetch = +refs/branch-heads/*:refs/remotes/branch-heads/*
    fetch = +refs/tags/*:refs/tags/*

Contributing

Please follow the instructions mentioned at v8.dev/docs/contribute.