←back to thread

202 points thunderbong | 1 comments | | HN request time: 0.202s | source
Show context
abixb ◴[] No.42192251[source]
Student here, and this has to be the most satisfying 20 minutes I spent cloning a GitHub repo in a while.

Here are a few things I encountered which might probably help others:

    # Version mismatch: 
    The install version of node.js I had (v12.22.9) was too old to meet the project's requirements (>= 18.13). 
To fix that, I used nvm to install the right Node.js version (>18.0)

    # Version check before install: Used the following to check version to verify before proceeding ahead with building it:
    node -v
    npm -v
It ran successfully, and I've been playing around with built-in Python3 and C scripts and pushed the modified repo to my personal GitHub. Thank you, dev!
replies(1): >>42192527 #
1. apignotti ◴[] No.42192527[source]
Thank you, appreciated.