I can't find any straightforward instructions on this. I've installed node.js and npm, then created a project in its own folder, D:\node_stuff, then cd'd there via cmd (Windows 10) and ran npm install express, npm init. I'm trying to use gifify, and installed its dependencies via npm instead of brew (ffmpeg, imagemagick, giflossy).
gifify -h-> 'gifify' is not recognized as an internal or external command, operable program or batch file.node gifify -h-> Error: Cannot find module 'D:\node_stuff\gifify'cd node_modules->node gifify -h-> nothing happens
What am I doing wrong? Where do I even look - all tutorials with simple search only show how to install packages or build a project - I don't need to build anything, only to use this one module.
npxto run it e.g.npx gifify -h. Not sure this is available on Windows but please try.npm i gifify -g, its in the readme