28 releases (5 breaking)

0.5.1 Feb 21, 2024
0.4.3 Jan 29, 2024
0.4.0 Dec 8, 2023
0.4.0-beta.4 Aug 18, 2023
0.0.4 Mar 8, 2020

#15 in Programming languages

Download history 1884/week @ 2023-12-24 3221/week @ 2023-12-31 4714/week @ 2024-01-07 5651/week @ 2024-01-14 9576/week @ 2024-01-21 8207/week @ 2024-01-28 7913/week @ 2024-02-04 3474/week @ 2024-02-11 7392/week @ 2024-02-18 8099/week @ 2024-02-25 9326/week @ 2024-03-03 8601/week @ 2024-03-10 10347/week @ 2024-03-17 10057/week @ 2024-03-24 7774/week @ 2024-03-31 7375/week @ 2024-04-07

36,132 downloads per month
Used in 25 crates (18 directly)

MIT license

535KB
13K SLoC

rquickjs

github crates docs status

This library is a high level bindings the QuickJS JavaScript engine. Its goal is to be an easy to use, and safe wrapper similar to the rlua library.

QuickJS is a small and embeddable JavaScript engine. It supports the ES2020 specification including modules, asynchronous generators, proxies and BigInt. It optionally supports mathematical extensions such as big decimal floating point numbers (BigDecimal), big binary floating point numbers (BigFloat) and operator overloading.

Main features of QuickJS

  • Small and easily embeddable: just a few C files, no external dependency, 210 KiB of x86 code for a simple hello world program.
  • Fast interpreter with very low startup time: runs the 75000 tests of the ECMAScript Test Suite in about 100 seconds on a single core of a desktop PC. The complete life cycle of a runtime instance completes in less than 300 microseconds.
  • Almost complete ES2020 support including modules, asynchronous generators and full Annex B support (legacy web compatibility).
  • Passes nearly 100% of the ECMAScript Test Suite tests when selecting the ES2020 features. A summary is available at Test262 Report.
  • Can compile JavaScript sources to executables with no external dependency.
  • Garbage collection using reference counting (to reduce memory usage and have deterministic behavior) with cycle removal.
  • Mathematical extensions: BigDecimal, BigFloat, operator overloading, bigint mode, math mode.
  • Command line interpreter with contextual colorization implemented in JavaScript.
  • Small built-in standard library with C library wrappers.

Features provided by this crate

  • Full integration with async Rust
    • The ES6 Promises can be handled as Rust futures and vice versa
    • Easy integration with almost any async runtime or executor
  • Flexible data conversion between Rust and JS
    • Many widely used Rust types can be converted to JS and vice versa
    • FromJs and IntoJs derive macros can help adapt user defined types too
  • Support for user-defined allocators
    • The Runtime can be created using custom allocator
    • Using Rust's global allocator is also fully supported
  • Support for user-defined module resolvers and loaders which also can be combined to get more flexible solution for concrete case
  • Support for bundling JS modules as a bytecode using embed macro
  • Support for deferred calling of JS functions
  • Full support of ES6 classes
    • Rust data types can be represented as JS classes
    • Data fields can be accessed via object properties
    • Both static and instance members is also supported
    • The properties can be defined with getters and setters
    • Support for constant static properties
    • Support for holding references to JS objects (Data type which holds refs should implement HasRefs trait to get garbage collector works properly)
    • Support for extending defined classes by JS
  • Easy bindings using proc macro (The interfacing between JS and Rust became much easy with bind macro)

Development status

This bindings is feature complete, mostly stable and ready to use. The error handling is only thing which may change in the future. Some experimental features like parallel may not works as expected. Use it for your own risk.

Using rquickjs on windows

Note that the QuickJS library does not support windows natively, this library supports windows by patching QuickJS. For patching we use the patch utility which needs to be installed when building for windows. For more information see #88.

License

This library is licensed under the MIT License

Dependencies

~4–5MB
~141K SLoC