
Security News
Axios Supply Chain Attack Reaches OpenAI macOS Signing Pipeline, Forces Certificate Rotation
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.
doxdown is a jsDoc to MkDocs markdown generator. It allows you to control your documentation on a comment by comment basis, choosing the page and document the comment belongs to. This is especially useful when you need to document an API separate to the rest of your codebase.
Running it on a directory with the default options will parse all nested JavaScript files and output a ./doxdown folder. Inside will be a folder for each document with Markdown files and a mkdocs.yml file in the format expected by MkDocs. You can then run MkDocs on any of those folders to build a site that you can deploy to a server.
The easiest way to get doxdown is with NPM: npm install doxdown --global
Use the command doxdown with the following options to generate your docs:
| Name | Alias | Default | Description |
|---|---|---|---|
| ignore | i | .git,node_modules | comma-separated list of files/directories to ignore |
| out | o | ./doxdown | relative path to the output directory |
| regex | r | \.js$ | regex string for matching files in the source directory |
| src | s | ./ | relative path to the source directory |
doxdown looks for jsDoc-style comments with a special @docs tag in the format document [// page] // section which describes where the comment belongs in which document. Use a jsDoc @desc to describe the function or event in the format @name - description. You can have any number of @params or @data tags and one @returns tag.
/**
* @docs Some Docs // Users & Accounts // User Helpers
* @desc getUsernames - A description of getUsernames
* @param {Object[]} users - An array of user objects
* @param {String} users[].name - A user's name
* @param {Number} limit - The max number to return
* @returns {String[]} An array of usernames
*/
function getUsernames (users, limit) {
const usernames = [];
for (let i = 0; i < limit; i++) {
usernames.push(users[i].name);
}
return usernames;
}
/**
* @docs Tracking // Registration
* @desc registration-complete - Fires when a user successfully completes registration.
* @data {String} forename - The user's forename
* @data {String} surname - The user's surname
* @data {Date} dob - The user's date of birth
* @data {Object} address - An object containing details of a user's address
* @data {String} address.house - The house name/no. of the user's address
* @data {String} address.postcode - The postcode of the user's address
*/
SomeTrackingAPI.trigger('registration-complete', {
forename: "Sherlock",
surname: "Holmes"
dob: dateOfBirth,
address: {
house: "221B",
postcode: "NW16XE"
}
});
regex option with glob pattern for matching files and directories.FAQs
jsDoc to MkDocs markdown generator
We found that doxdown demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.

Security News
Open source is under attack because of how much value it creates. It has been the foundation of every major software innovation for the last three decades. This is not the time to walk away from it.

Security News
Socket CEO Feross Aboukhadijeh breaks down how North Korea hijacked Axios and what it means for the future of software supply chain security.