You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
User might not want to pollute their global environment with npm install koy -g and choose to install locally via npm install koy. That way, users need to invoke koy this way:
node_modules/.bin/koy FILENAME.md
or alternatively,
npx koy FILENAME.md
npx is a utility of NPM. It will check the node_modules in the current directory for the executable. If not found, it will automatically download the package.
By the way, Carlo author's team members send their regards.
The text was updated successfully, but these errors were encountered:
User might not want to pollute their global environment with
npm install koy -g
and choose to install locally vianpm install koy
. That way, users need to invokekoy
this way:or alternatively,
npx
is a utility of NPM. It will check thenode_modules
in the current directory for the executable. If not found, it will automatically download the package.The text was updated successfully, but these errors were encountered: