Popularity
9.7
Stable
Activity
10.0
Growing
20,944
971
3,810

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

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

    9.0 9.7 L2 V8 VS Cython
    The most widely used Python to C compiler
  • Sonar helps you commit clean C++ code every time. With over 550 unique rules to find C++ bugs, code smells & vulnerabilities, Sonar finds the issues while you focus on the work.
  • 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.4 0.0 V8 VS Wren
    The Wren Programming Language. Wren is a small, fast, class-based concurrent scripting language.
  • Duktape

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

    8.1 6.0 L1 V8 VS JavaCpp
    The missing bridge between Java and native C++
  • sol2

    7.7 6.4 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

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

    A portable foreign-function interface library.
  • ChaiScript

    Embedded Scripting Language Designed for C++
  • CppSharp

    7.4 6.4 L2 V8 VS CppSharp
    Tools and libraries to glue C/C++ APIs to high-level languages
  • Lua

    7.1 0.0 L3 V8 VS Lua
    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 0.9 L3 V8 VS V7
    Embedded JavaScript engine for C/C++
  • cppimport

    Import C++ files directly from Python!
  • v8pp

    5.0 3.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
  • shpp

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

    Nelson numerical interpreter
  • tbing

    Templates-based bindings and interfaces generator for C++
  • SIP

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

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

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.