lorenzoy
lorenzoy•5d ago

unable to see documentation on deno.land/x

I just wanted to install jose, but the "view documentation" button seems to be missing...
No description
2 Replies
Doctor 🤖
Doctor 🤖•5d ago
Documentation on /x has been removed
Leokuma
Leokuma•4d ago
You can still generate the docs locally First download the package:
deno cache --vendor https://deno.land/x/jose@v5.9.6/index.ts
deno cache --vendor https://deno.land/x/jose@v5.9.6/index.ts
It will be downloaded to a folder called vendor Then generate the docs for it:
deno doc --html --name="jose" ./vendor/deno.land/x/jose@v5.9.6/index.ts
deno doc --html --name="jose" ./vendor/deno.land/x/jose@v5.9.6/index.ts
Docs will be generated in a folder called docs by default. Open the file docs/index.html in your browser to navigate through the docs

Did you find this page helpful?