close
Skip to main content

@deno/doc@0.199.0
Built and signed on GitHub Actions

Works with
This package works with DenoIt is unknown whether this package works with Cloudflare Workers, Node.js, Bun, Browsers
It is unknown whether this package works with Cloudflare Workers
It is unknown whether this package works with Node.js
This package works with Deno
It is unknown whether this package works with Bun
It is unknown whether this package works with Browsers
JSR Score64%
License
MIT
Downloads472/wk
Published3 weeks ago (0.199.0)

Documentation generator for Deno

deno_doc

This repository includes a compiled version of the Rust crate as Web Assembly and exposes an interface which is available via the mod.ts.

Install:

deno add jsr:@deno/doc

Use:

import { doc } from "@deno/doc";

doc()

The doc() function takes an array of string URL module specifiers and potentially some options, and asynchronously resolves with a record of documentation nodes keyed by the module URL, which represent the surface API of the module.

A minimal example of using doc() and printing out some information about a function:

import { doc } from "@deno/doc";

const records = await doc(["https://deno.land/std/fmt/colors.ts"]);
const colorsDoc = records["https://deno.land/std/fmt/colors.ts"];

for (const node of colorsDoc) {
  console.log(`name: ${node.name} kind: ${node.kind}`);
}

The doc() function needs a way to retrieve modules, and by default uses a load() function provided by deno_graph which uses fetch() for remote modules and Deno.readFile() for local modules. This means that doc() will require that appropriate read/net permissions to function properly. It will prompt for them if not provided at startup.

DocNode

The foundational type for the documentation is the DocNode and is exported from the mod.ts.

Built and signed on
GitHub Actions

Report package

Please provide a reason for reporting this package. We will review your report and take appropriate action.

Please review the JSR usage policy before submitting a report.

Add Package

deno add jsr:@deno/doc

Import symbol

import * as doc from "@deno/doc";
or

Import directly with a jsr specifier

import * as doc from "jsr:@deno/doc";