This project brings quickjs-ng/quickjs to Bazel!
Inspired by (and based on) rules_js, it lets you run JavaScript with qjs
under Bazel.
See install instructions on the release page.
In a BUILD.bazel
file:
load("@bzlparty_rules_quickjs//quickjs:defs.bzl", "qjs_binary")
qjs_binary(
name = "index",
entry_point = ":index.js",
)
See the rules documentation for more details.
Run qjs
from Bazel:
bazel run @bzlparty_quickjs//:qjs
Copyright Contributors to the bzlparty project.
Unless otherwise specified, source code in this repository is licensed under the GNU Lesser General Public License, Version 3 or later (LGPL-3.0-or-later). A copy is included in the LICENSE
file.
Other licenses may be specified as well for certain files or where third-party components are used.