Home
Docs
GitHub
Pricing
Blog
Log In

Run Sandworm Audit for your App

Get started
Hold on, we're currently generating a fresh version of this report
Generated on Apr 29, 2024 via pnpm

jsdoc 4.0.2

An API documentation generator for JavaScript.
Package summary
Share
0
issues
6
licenses
22
MIT
4
Apache-2.0
1
Python-2.0
3
other licenses
BSD-2-Clause
1
ISC
1
Unlicense
1
Package created
19 Sep 2011
Version published
19 Feb 2023
Maintainers
1
Total deps
30
Direct deps
15
License
Apache-2.0

Issues

0
This package has no issues

Licenses

MIT License

Permissive
OSI Approved
This is a human-readable summary of (and not a substitute for) the license. Disclaimer.
Can
commercial-use
modify
distribute
sublicense
private-use
Cannot
hold-liable
Must
include-copyright
include-license
22 Packages, Including:
@babel/helper-string-parser@7.24.1
@babel/helper-validator-identifier@7.22.20
@babel/parser@7.24.4
@babel/types@7.24.0
@types/linkify-it@3.0.5
@types/markdown-it@12.2.3
@types/mdurl@1.0.5
bluebird@3.7.2
catharsis@0.9.0
escape-string-regexp@2.0.0
klaw@3.0.0
linkify-it@3.0.3
lodash@4.17.21
markdown-it@12.3.2
marked@4.3.0
mdurl@1.0.1
mkdirp@1.0.4
requizzle@0.2.4
strip-json-comments@3.1.1
to-fast-properties@2.0.0
uc.micro@1.0.6
underscore@1.13.6

Apache License 2.0

Permissive
OSI Approved
This is a human-readable summary of (and not a substitute for) the license. Disclaimer.
Can
commercial-use
modify
distribute
sublicense
private-use
use-patent-claims
place-warranty
Cannot
hold-liable
use-trademark
Must
include-copyright
include-license
state-changes
include-notice
4 Packages, Including:
@jsdoc/salty@0.2.8
js2xmlparser@4.0.2
jsdoc@4.0.2
xmlcreate@2.0.4

Python License 2.0

Permissive
OSI Approved
This is a human-readable summary of (and not a substitute for) the license. Disclaimer.
Can
commercial-use
modify
distribute
Cannot
use-trademark
hold-liable
Must
include-copyright
include-license
state-changes
1 Packages, Including:
argparse@2.0.1

BSD 2-Clause "Simplified" License

Permissive
OSI Approved
This is a human-readable summary of (and not a substitute for) the license. Disclaimer.
Can
commercial-use
modify
distribute
place-warranty
Cannot
hold-liable
Must
include-copyright
include-license
1 Packages, Including:
entities@2.1.0

ISC License

Permissive
OSI Approved
This is a human-readable summary of (and not a substitute for) the license. Disclaimer.
Can
commercial-use
modify
distribute
Cannot
hold-liable
Must
include-copyright
include-license
1 Packages, Including:
graceful-fs@4.2.11

The Unlicense

Public Domain
OSI Approved
This is a human-readable summary of (and not a substitute for) the license. Disclaimer.
Can
commercial-use
private-use
modify
Cannot
include-copyright
hold-liable
Must
1 Packages, Including:
markdown-it-anchor@8.6.7
Disclaimer

This deed highlights only some of the key features and terms of the actual license. It is not a license and has no legal value. You should carefully review all of the terms and conditions of the actual license before using the licensed material.

Sandworm is not a law firm and does not provide legal services. Distributing, displaying, or linking to this deed or the license that it summarizes does not create a lawyer-client or any other relationship.

Direct Dependencies

15
All Dependencies CSV
β“˜ This is a list of jsdoc 's direct dependencies. Data on all dependencies, including transitive ones, is available via CSV download.
NameVersionSizeLicenseTypeVulnerabilities
@babel/parser7.24.41.8 MBMIT
prod
@jsdoc/salty0.2.826.1 kBApache-2.0
prod
@types/markdown-it12.2.311.31 kBMIT
prod peer
bluebird3.7.2136.03 kBMIT
prod
catharsis0.9.064.13 kBMIT
prod
escape-string-regexp2.0.01.66 kBMIT
prod
js2xmlparser4.0.214.13 kBApache-2.0
prod
klaw3.0.04.99 kBMIT
prod
markdown-it-anchor8.6.725.93 kBUnlicense
prod
markdown-it12.3.2146.6 kBMIT
prod peer
marked4.3.0103.63 kBMIT
prod
mkdirp1.0.46.51 kBMIT
prod
requizzle0.2.46.59 kBMIT
prod
strip-json-comments3.1.12.78 kBMIT
prod
underscore1.13.6211.5 kBMIT
prod

Visualizations

Frequently Asked Questions

What does jsdoc do?

JSDoc is a popular API documentation generator for JavaScript. It creates comprehensive and easy-to-read documentation for JavaScript codebases, effectively making it simpler for developers to understand the structure, functionalities, and usage of JavaScript components.

How do you use jsdoc?

To start off using JSDoc, first, you need to install the package. You can install it globally using the following command:

npm install -g jsdoc

Or install it locally in your project:

npm install --save-dev jsdoc

After the successful installation of JSDoc, you can generate documentation from your JavaScript files. If JSDoc was installed locally, use the following command:

./node_modules/.bin/jsdoc yourJavaScriptFile.js

For global installations, this is the command:

jsdoc yourJavaScriptFile.js

By default, the generated documentation will be stored in a directory named out. You can choose a different directory by using the --destination option.

Where are the jsdoc docs?

The documentation for JSDoc is available at jsdoc.app. It provides comprehensive information and guidance on how to use JSDoc efficiently, including how to generate and customize your documentation, a list of command-line options, templates and tools created by the community, and much more. Experienced or new users can also contribute to the docs repository at jsdoc/jsdoc.github.io.