npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

ghom-djs-docs

v2.1.0

Published

A discord.js docs parser and wrapper.

Downloads

21

Readme

Discord.js Docs

A parser and wrapper for the discord.js docs.

Install

npm i ghom-djs-docs

Import

// ESModule / TypeScript
import * as docs from "ghom-djs-docs"

// Or CommonJS
const docs = require("ghom-djs-docs")

docs.fetchRaw(sourceName[, options])

Fetches and parses the docs for the given project.
sourceName can be any of the predefined values (stable, master, commando, rpc, akairo, and collection) or an URL which will return the raw generated docs (e.g https://raw.githubusercontent.com/discordjs/docs/main/discord.js/main.json).
Once a documentation is fetched it will be cached. Use options.force to avoid this behavior.

Params:

| name | type | required | | :--------: | :--------: | :------: | | sourceName | SourceName | yes | | options | object | no |

Returns: Promise<Raw | null>

const master = await docs.fetchRaw("master")
const akairo = await docs.fetchRaw("akairo", { force: true })

docs.search(raw, path)

Gets documentation for one element. Multiple properties/methods can be chained by . in the "path" param.

Params:

| name | type | required | | :--: | :-------------------: | :------: | | raw | Raw | SourceName | yes | | path | string | yes |

Returns: Promise<SearchResult>

// from raw
const someCLass = await docs.search(stable, "message")
const someMethod = await docs.search(stable, "message.guild.iconURL")

// from sourceName
const someProp = await docs.search("stable", "message.guild.name")
const someParam = await docs.search(
  "stable",
  "message.guild.members.fetch.options"
)

docs.fetchAll(options)

Fetch all the documentations and stock it in the docs.cache Map object. (returns this one)

Params:

| name | type | required | | :-----: | :----: | :------: | | options | object | no |

Returns: Promise<Map<SourceName, Raw>>

const cache = await docs.fetchAll()
cache.forEach((raw, sourceName) => {
  console.log(sourceName, raw.meta)
})

docs.flatTypeDescription(type)

Get the flat version of a 3D array type description

Params:

| name | type | required | | :--: | :-------------: | :------: | | type | TypeDescription | no |

Returns: string | null

const stable = await docs.fetchRaw("stable")
const someProp = await docs.search(stable, "client.ws")

if (docs.isProp(stable, someProp))
  console.log(docs.flatTypeDescription(someProp.type))

docs.buildURL(sourceName, result)

Get the doc source URL in the Github repository

Params:

| name | type | required | | :--------: | :----------: | :------: | | sourceName | SourceName | yes | | result | SearchResult | yes |

Returns: string | null

const someProp = await docs.search("stable", "guild.owner.user.id")

console.log(docs.buildURL("stable", someProp))

docs.isXXXX(raw, result)

Type assertion method

Params:

| name | type | required | | :----: | :----------: | :------: | | raw | Raw | yes | | result | SearchResult | yes |

Returns: result is XXXX (boolean)