Skip to content

javascript interpreter

Zeioth edited this page Oct 20, 2023 · 3 revisions

The Javascript interpreter can be used to run Node programs.

screenshot_2023-10-21_00-42-32_222255525

Troubleshooting

You must have the next files on your working directory

  • tsconfig.json Here you specify the Node version and ECMA version of the code you want to compile.
  • package.json: This file is necessary to run NPM install and NPM start.

You can find examples of both here and here.