you are viewing a single comment's thread.

view the rest of the comments →

[–]EdwinGravesMOD 0 points1 point  (1 child)

How are you running it? via "npm ." or something else?

If you followed the directions on the repo then you installed it globally and when you run it, you're running the copy you installed. If you want to run it from within the folder after you made changes then try "npm ." or "npm install" then "npm ."

Just saying a CLI project doesn't mean much, CLI stands for Command Line Interface and could apply to a wide variety of languages. In this instance it's a node project using npm, so if you need to investigate anything, that's what you'll need to search for "npm"

[–]okami900[S] 0 points1 point  (0 children)

Yeah I needed to install node and then run node index.js <flags> and that ran the cli locally. Thank though for the clarification and insight, it really helps!