Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adding notes to run this in 2023 #635

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions impls/js/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# Notes
The javascript implementation here is quite old and it will not run on newer versions of nodejs. If you want to use this implementation use an lts nodejs <= to lts/erbium -> v12.22.12.

You can install the above using nvm or any of the node version managers around. Here I assume `nvm`
adjust accordingly.

> Install `nvm` following [these instructions](https://github.com/nvm-sh/nvm#installing-and-updating)

Once that is done, you can get things building issuing from the root folder of your `mal` clone
these commands:
```
$ nvm install lts/erbium
$ make clean^js
$ make test^js
```