Cant run the custom wick editor

how do i properly instal npm to actualy run this?

1st. Which OS do you use?: ChromeOS (yuck), Windows, Linux or macOS.

2nd. You need to install Node.js to get NPM (and choose NPM instead of yarn/pnpm/whatever)

3rd. Wick Editor 1.x is so old that it doesn’t run on Node 15.x or later.

im on macOS

i have the files installed, i just need a guide on how to install node js and npm

what’s custom wick editor?

its a fork of the wick editor that has a bunch of features that the base wick editor doesn’t have.
mainly exporting clips directly into the library

cool (10 characters)

  1. Open the Terminal app (I know it’s scary)

  2. Write this:

# Download and install nvm:
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.40.3/install.sh | bash
# in lieu of restarting the shell
\. "$HOME/.nvm/nvm.sh"
# Download and install Node.js:
nvm install 14
# Verify the Node.js version:
node -v # Should print "v14.21.3".
# Verify npm version:
npm -v # Should print "6.14.18".

And then you’re done!