Git Product home page Git Product logo

jsdoc2js-loader's Introduction

jsdoc2js-loader

License npm dependencies Status build

๐Ÿ“–๐Ÿ“ฅ๐Ÿ“ฆ Loads jsdoc descriptions as javascript objects

Simple webpack loader using jsdoc-api.

Installation

npm i -D jsdoc2js-loader

Example Usage

myFile.js

/**
 * add two numbers
 *
 * @param {number} a - some number
 * @param {number} b - another number
 * @returns {number} - a + b
 */
function demo(a, b) {
  return a + b;
}

Load the documentation description like so:

const docs = require(!!raw-loader!jsdoc2js!myFile.js);
console.log(JSON.stringify(docs, null, 2));
[
  {
    "comment": "/**\n * add two numbers\n *\n * @param {number} a - some number\n * @param {number} b - another number\n * @returns {number} - a + b\n */",
    "meta": {
      "range": [
        132,
        171
      ],
      "filename": "vgbattkh3xi2tilrkq5j1l.js",
      "lineno": 8,
      "path": "/tmp",
      "code": {
        "id": "astnode100000001",
        "name": "demo",
        "type": "FunctionDeclaration",
        "paramnames": [
          "a",
          "b"
        ]
      }
    },
    "description": "add two numbers",
    "params": [
      {
        "type": {
          "names": [
            "number"
          ]
        },
        "description": "some number",
        "name": "a"
      },
      {
        "type": {
          "names": [
            "number"
          ]
        },
        "description": "another number",
        "name": "b"
      }
    ],
    "returns": [
      {
        "type": {
          "names": [
            "number"
          ]
        },
        "description": "- a + b"
      }
    ],
    "name": "demo",
    "longname": "demo",
    "kind": "function",
    "scope": "global"
  },
  {
    "kind": "package",
    "longname": "package:undefined",
    "files": [
      "/tmp/vgbattkh3xi2tilrkq5j1l.js"
    ]
  }
]

jsdoc2js-loader's People

Contributors

au-re avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.