You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 3 Next »

Introduction

The Oracle GraalVM JavaScript Runtime implements ECMAScript standards and does not include modules that are specific for Node.js such as http, fs etc., for details see https://www.graalvm.org/latest/reference-manual/js/Modules/

The Oracle GraalVM 

Installation

Users can install Node.js packages

Example how to install JavaScript Runtime packages for Linux
# set location of GraalVM
JAVA_HOME=/opt/java/graalvm-community-openjdk-17.0.7+7.1

# install Node.js packages
#    installed packages will be located in $JAVA_HOME/bin/node_modules sub-directory
$JAVA_HOME/bin/npm install Buffer
$JAVA_HOME/bin/npm install http

  • No labels