包详细信息

doctrine2

ecomfe1.5k1.2.2

JSDoc parser

自述文件

NPM version build status Test coverage Downloads Join the chat at https://gitter.im/eslint/doctrine

Doctrine

Doctrine is a JSDoc parser that parses documentation comments from JavaScript (you need to pass in the comment, not a whole JavaScript file).

Installation

You can install Doctrine using npm:

$ npm install doctrine --save-dev

Doctrine can also be used in web browsers using Browserify.

Usage

Require doctrine inside of your JavaScript:

var doctrine = require("doctrine");

parse()

The primary method is parse(), which accepts two arguments: the JSDoc comment to parse and an optional options object. The available options are:

  • unwrap - set to true to delete the leading /**, any * that begins a line, and the trailing */ from the source text. Default: false.
  • tags - an array of tags to return. When specified, Doctrine returns only tags in this array. For example, if tags is ["param"], then only @param tags will be returned. Default: null.
  • recoverable - set to true to keep parsing even when syntax errors occur. Default: false.
  • sloppy - set to true to allow optional parameters to be specified in brackets (@param {string} [foo]). Default: false.
  • lineNumbers - set to true to add lineNumber to each node, specifying the line on which the node is found in the source. Default: false.

Here's a simple example:

var ast = doctrine.parse(
    [
        "/**",
        " * This function comment is parsed by doctrine",
        " * @param {{ok:String}} userName",
        "*/"
    ].join('\n'), { unwrap: true });

This example returns the following AST:

{
    "description": "This function comment is parsed by doctrine",
    "tags": [
        {
            "title": "param",
            "description": null,
            "type": {
                "type": "RecordType",
                "fields": [
                    {
                        "type": "FieldType",
                        "key": "ok",
                        "value": {
                            "type": "NameExpression",
                            "name": "String"
                        }
                    }
                ]
            },
            "name": "userName"
        }
    ]
}

See the demo page more detail.

Team

These folks keep the project moving and are resources for help:

Contributing

Issues and pull requests will be triaged and responded to as quickly as possible. We operate under the ESLint Contributor Guidelines, so please be sure to read them before contributing. If you're not sure where to dig in, check out the issues.

Frequently Asked Questions

Can I pass a whole JavaScript file to Doctrine?

No. Doctrine can only parse JSDoc comments, so you'll need to pass just the JSDoc comment to Doctrine in order to work.

License

doctrine

Copyright (C) 2012 Yusuke Suzuki (twitter: @Constellation) and other contributors.

Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:

  • Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.

  • Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL <COPYRIGHT HOLDER> BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

esprima

some of functions is derived from esprima

Copyright (C) 2012, 2011 Ariya Hidayat (twitter: @ariyahidayat) and other contributors.

Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:

  • Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.

  • Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL <COPYRIGHT HOLDER> BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

closure-compiler

some of extensions is derived from closure-compiler

Apache License Version 2.0, January 2004 http://www.apache.org/licenses/

Where to ask for help?

Join our Chatroom

更新日志

v1.2.1 - March 29, 2016

  • 1f54014 Fix: allow hyphens in names (fixes #116) (Kai Cataldo)
  • bbee469 Docs: Add issue template (Nicholas C. Zakas)

v1.2.0 - February 19, 2016

  • 18136c5 Build: Cleanup build system (Nicholas C. Zakas)
  • b082f85 Update: Add support for slash in namepaths (fixes #100) (Ryan Duffy)
  • def53a2 Docs: Fix typo in option lineNumbers (Daniel Tschinder)
  • e2cbbc5 Update: Bump isarray to v1.0.0 (Shinnosuke Watanabe)
  • ae07aa8 Fix: Allow whitespace in optional param with default value (fixes #141) (chris)

v1.1.0 - January 6, 2016

  • Build: Switch to Makefile.js (Nicholas C. Zakas)
  • New: support name expression for @this tag (fixes #143) (Tim Schaub)
  • Build: Update ESLint settings (Nicholas C. Zakas)

v1.0.0 - December 21, 2015

  • New: parse caption tags in examples into separate property. (fixes #131) (Tom MacWright)

v0.7.2 - November 27, 2015

  • Fix: Line numbers for some tags (fixes #138) Fixing issue where input was not consumed via advance() but was skipped when parsing tags resulting in sometimes incorrect reported lineNumber. (TEHEK)
  • Build: Add missing linefix package (Nicholas C. Zakas)

v0.7.1 - November 13, 2015

  • Update: Begin switch to Makefile.js (Nicholas C. Zakas)
  • Fix: permit return tag without type (fixes #136) (Tom MacWright)
  • Fix: package.json homepage field (Bogdan Chadkin)
  • Fix: Parse array default syntax. Fixes #133 (Tom MacWright)
  • Fix: Last tag always has \n in the description (fixes #87) (Burak Yigit Kaya)
  • Docs: Add changelog (Nicholas C. Zakas)

v0.7.0 - September 21, 2015

  • Docs: Update README with new info (fixes #127) (Nicholas C. Zakas)
  • Fix: Parsing fix for param with arrays and properties (fixes #111) (Gyandeep Singh)
  • Build: Add travis build (fixes #123) (Gyandeep Singh)
  • Fix: Parsing of parameter name without a type (fixes #120) (Gyandeep Singh)
  • New: added preserveWhitespace option (Aleks Totic)
  • New: Add "files" entry to only deploy select files (Rob Loach)
  • New: Add support and tests for typedefs. Refs #5 (Tom MacWright)