0

I've installed APIDoc.js packages globally, using yarn.

yarn global add apidoc

I'm on a Debian 9.8.

Actually...

which apidoc

... doesn't return any path. So running ...

apidoc

... results in a

command not found

How can I execute apidoc when globally installed?

tk421
  • 5,775
  • 6
  • 23
  • 34
realtebo
  • 23,922
  • 37
  • 112
  • 189

1 Answers1

1

I ended running it using npx

npx apidoc ...< rest of params >
realtebo
  • 23,922
  • 37
  • 112
  • 189