New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details
Socket
Book a DemoSign in
Socket

ub-jsdoc

Package Overview
Dependencies
Maintainers
2
Versions
53
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ub-jsdoc

JSDoc 3 Template / Theme generated using VueJS SSR

latest
Source
npmnpm
Version
3.1.5
Version published
Weekly downloads
80
-6.98%
Maintainers
2
Weekly downloads
 
Created
Source

ub-jsdoc

Documentation template theme for JSDoc 3 based on Vue server side rendering.

Features:

  • multiple modules support:

Screenshot

  • build-in full text search across all available modules:

ScreenshotSearch

  • responsive design (mobile screen):

ScreenshotMobile

Live sample is a UnityBase framework documentation

Features

  • Designed for a framework what contains many modules
  • Full Text Search with rank
  • Links to MDN for a standard built-in objects
  • Click on member name will navigate to source
  • Compact layout for members
  • Responsive design
  • In case @module marked as a member of other module using @memberOf module:parentModule it does not appear in navigation panel

Uses

Install

$ npm i ub-jsdoc

For simple Cross-module navigation replace a js-doc templateHelper.js with templateHelper.js-patched

Usage

Clone repository to your designated jsdoc template directory, then:

$ jsdoc entry-file.js -t path/to/ub-jsdoc

Node.js Dependency

In project package.json file add generate script:

"script": {
  "generate-docs": "node_modules/.bin/jsdoc --configure .jsdoc.json --verbose"
}

In .jsdoc.json file, add a template option.

"opts": {
  "template": "node_modules/ub-jsdoc"
}

Markdown

Used markdown-it and plugins:

Extend

You can easy extend generations with you own docs. Just use renderFile function.

module.exports = () => {
  const renderFile = require('./vueRender')
  renderFile(props,
    'path/to/vue/template',
    'path/to/html/template',
    'output/path')
}

Then add path to file in extends in your jsdoc config.

"extends": [
   "path/to/module"
 ]

Example JSDoc Config

{
  "tags": {
    "allowUnknownTags": true,
    "dictionaries": [
      "jsdoc"
    ]
  },
  "source": {
    "include": [
      "lib",
      "package.json",
      "README.md"
    ],
    "includePattern": ".js$",
    "excludePattern": "(node_modules/|docs)"
  },
  "plugins": [
    "plugins/markdown",
    "./ub-jsdocs/plugins/sripPFromDescription",
    "./packages/ub-jsdocs/plugins/memberOfModule.js"
  ],
  "templates": {
    "cleverLinks": true,
    "monospaceLinks": false,
    "buildInURL": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/",
    "buildins": [
      "array",
      "arraybuffer",
      "boolean",
      "date",
      "error",
      "function",
      "json",
      "number",
      "object",
      "regexp",
      "string",
      "null"
    ],
    "smallSourceLink": true,
    "hideAuthor": true,
    "stylesheet": "styles/ub-jsdoc.css",
    "googleAnalytics": "yourGAAccount",
    "default": {
      "outputSourceFiles": true,
      "staticFiles": {
        "include": [
          "./pathToYourTutorialFolder"
        ],
        "excludePattern": "\\.md$"
      }
    }
  },
  "opts": {
    "destination": "./docs/",
    "encoding": "utf8",
    "private": true,
    "recurse": true,
    "template": "./node_modules/ub-jsdoc",
    "tutorials": "./pathToYourTutorialFolder"
  },
  "extendedConfig": {
    "navbar": {
      "logo": {
        "img": "https://unitybase.info/img/UB-logo.png",
        "href": "index.html"
      },
      "nav": [
        {
          "href": "server-v5/index.html",
          "name": "Server Docs"
        },
        {
          "href": "ubpub-v5/index.html",
          "name": "Client Docs"
        },
        {
          "href": "server-v5/tutorialIndex.html",
          "name": "Tutorials"
        },
        {
          "href": "gettingstarted/index.html",
          "name": "Getting Started"
        }
      ]
    },
    "extends": [
      "./src/generators/gettingStarted",
      "./src/generators/mainDocPage"
    ]
  }
}

License

Licensed under the Apache2 license.

Keywords

jsdoc

FAQs

Package last updated on 31 Jan 2024

Did you know?

Socket

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.

Install

Related posts