Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jonschlinkert/tokenize-comment
Uses snapdragon to tokenize a single JavaScript block comment into an object, with description, tags, and code example sections that can be passed to any other comment parsers for further parsing.
https://github.com/jonschlinkert/tokenize-comment
code code-comment comment comment-parser gfm javadoc javascript jonschlinkert js jsdoc node nodejs parse parse-comments tokenize
Last synced: about 1 month ago
JSON representation
Uses snapdragon to tokenize a single JavaScript block comment into an object, with description, tags, and code example sections that can be passed to any other comment parsers for further parsing.
- Host: GitHub
- URL: https://github.com/jonschlinkert/tokenize-comment
- Owner: jonschlinkert
- License: mit
- Created: 2017-03-10T15:25:11.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2023-06-12T04:35:50.000Z (over 1 year ago)
- Last Synced: 2024-10-04T15:38:18.297Z (3 months ago)
- Topics: code, code-comment, comment, comment-parser, gfm, javadoc, javascript, jonschlinkert, js, jsdoc, node, nodejs, parse, parse-comments, tokenize
- Language: JavaScript
- Homepage: https://github.com/jonschlinkert/tokenize-comment
- Size: 355 KB
- Stars: 15
- Watchers: 4
- Forks: 6
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Contributing: .github/contributing.md
- License: LICENSE
Awesome Lists containing this project
README
# tokenize-comment [![NPM version](https://img.shields.io/npm/v/tokenize-comment.svg?style=flat)](https://www.npmjs.com/package/tokenize-comment) [![NPM monthly downloads](https://img.shields.io/npm/dm/tokenize-comment.svg?style=flat)](https://npmjs.org/package/tokenize-comment) [![NPM total downloads](https://img.shields.io/npm/dt/tokenize-comment.svg?style=flat)](https://npmjs.org/package/tokenize-comment) [![Linux Build Status](https://img.shields.io/travis/jonschlinkert/tokenize-comment.svg?style=flat&label=Travis)](https://travis-ci.org/jonschlinkert/tokenize-comment)
> Uses snapdragon to tokenize a single JavaScript block comment into an object, with description, tags, and code example sections that can be passed to any other comment parsers for further parsing.
## Install
Install with [npm](https://www.npmjs.com/):
```sh
$ npm install --save tokenize-comment
```What does this do?
This is a node.js library for tokenizing a single JavaScript block comment into an object with the following properties:
* `description`
* `examples`
* `tags`
* `footer`Why is this necessary?
After working with a number of different comment parsers and documentation systems, including [dox](https://github.com/tj/dox), [doctrine](https://github.com/eslint/doctrine), [jsdoc](https://github.com/jsdoc3/jsdoc), [catharsis](https://github.com/hegemonic/catharsis), [closure-compiler](https://github.com/google/closure-compiler), [verb](https://github.com/verbose/verb), [js-comments](https://github.com/jonschlinkert/js-comments), [parse-comments](https://github.com/jonschlinkert/parse-comments), among others, a few things became clear:
* There are certain features that are common to all of them, but they are implemented in totally different ways, and they all return completely different objects
* None of them follow the same conventions
* None of them have solid support for markdown formatting or examples in code comments (some have basic support, but weird conventions that need to be followed)doctrine is a good example the disparity. It's a great parser that produces reliable results. But if you review the doctrine issues you'll see mention of the need to adhere to "jsdoc specifications" quite often. Unfortunately:
* jsdoc is not a specification and does not have anything close to a spec to follow. Only docs.
* Even if jsdoc did have a real spec, it's an attempt at implementing a Javadoc parser in JavaScript, which itself does not have a specification. Similarly, Oracle has some documentation for Javadoc, but no specification (at least, I could not find a spec and was informed there wasn't one when I contacted support)
* where jsdoc falls short, doctrine augments the "spec" with closure compiler conventions (which also is not a real specification)
* doctrine throws errors on a great variety of nuances and edge cases that jsdoc itself has no problem with and will normalize out for youTo be clear, I'm not picking on doctrine, it's one of the better parsers (and I'm using it to parse the tags returned by `tokenize-comment`).
**The solution**
By tokenizing the comment first, we achieve the following:
* it's fast, since we're only interested in sifting out descriptions from examples and tags
* we get better support for different flavors of code examples (we can write indented or gfm code examples, or use the javadoc `@example` tag if we want)
* we use doctrine, catharsis, or any other comment parser to do further processing on any of the values.As a result, you can write code examples the way you want, and still follow jsdoc conventions for every other feature.
**Example**
Given the following comment:
```js
/**
* foo bar baz
*
* ```js
* var foo = "bar";
* ```
* @param {string} something
* @param {string} else
*/
````tokenize-comment` would return something like this:
```js
{
description: 'foo bar baz',
footer: '',
examples: [
{
type: 'gfm',
val: '```js\nvar foo = "bar";\n```',
description: '',
language: 'js',
code: '\nvar foo = "bar";\n'
}
],
tags: [
{
type: 'tag',
raw: '@param {string} something',
key: 'param',
val: '{string} something'
},
{
type: 'tag',
raw: '@param {string} else',
key: 'param',
val: '{string} else'
}
]
}
```We can now pass each tag to `doctrine.parseTag()` or `catharsis.parse()`, and format the resulting comment object to follow whatever convention we want. You can do something similar with the other properties as well.
## Usage
The main export is a function that takes a string with a single javascript comment only, _no code_.
```js
var tokenize = require('tokenize-comment');
var token = tokenize(commentString);
console.log(token);
```The comment can be a "raw" comment with leading stars:
```js
/**
* foo bar baz
* @param {String} abc Some description
* @param {Object} def Another description
*/
```Or a comment with stars already stripped (with or without leading whitespace):
```js
foo bar baz
@param {String} abc Some description
@param {Object} def Another description
```## Code examples
Recognizes gfm, javadoc and indented code examples. See [the unit tests](tests) for a number of more complex examples.
### GitHub Flavored Markdown
Supports [GFM style code examples](https://guides.github.com/features/mastering-markdown/#GitHub-flavored-markdown). The following comment:
```js
/**
* foo bar baz
*
* ```js
* var foo = "bar";
* ```
* @param {string} something
* @param {string} else
*/
```Results in:
```js
{
description: 'foo bar baz',
footer: '',
examples: [
{
type: 'gfm',
val: '```js\nvar foo = "bar";\n```',
description: '',
language: 'js',
code: '\nvar foo = "bar";\n'
}
],
tags: [
{
type: 'tag',
raw: '@param {string} something',
key: 'param',
val: '{string} something'
},
{
type: 'tag',
raw: '@param {string} else',
key: 'param',
val: '{string} else'
}
]
}
```### Indented code
Supports indented code examples:
```js
/**
* foo bar baz
*
* var foo = "bar";
*
* @param {string} something
* @param {string} else
*/
```### javadoc (jsdoc)
Supports [javadoc-style](https://en.wikipedia.org/wiki/Javadoc) code examples:
```js
/**
* foo bar baz
*
* @example
* var foo = "bar";
* var baz = "qux";
*
* @param {string} something
* @param {string} else
*/
```Results in:
```js
{
description: 'foo bar baz',
footer: '',
examples: [
{
type: 'javadoc',
language: '',
description: '',
raw: '@example\nvar foo = "bar";\nvar baz = "qux";\n',
val: '\nvar foo = "bar";\nvar baz = "qux";\n'
}
],
tags: [
{
type: 'tag',
raw: '@param {string} something',
key: 'param',
val: '{string} something'
},
{
type: 'tag',
raw: '@param {string} else',
key: 'param',
val: '{string} else'
}
]
}
```## Mixture
It will also recognize a mixture of formats (javadoc-style examples must always be last):
````js
/**
* This is a comment with
* several lines of text.
*
* An example
*
* ```js
* var foo = bar;
* var foo = bar;
* var foo = bar;
* ```
*
* Another example
*
* var baz = fez;
* var baz = fez;
* var baz = fez;
*
* Another example
*
* var baz = fez;
* var baz = fez;
*
*
*
* And another example
*
* ```js
* var foo = bar;
* var foo = bar;
* ```
*
* Another example
*
* @example
* var baz = fez;
*
* @example
* // this is a comment
* var alalla = zzzz;
*
* @param {String} foo bar
* @returns {Object} Instance of Foo
* @api public
*/
````Results in:
```js
{
description: 'This is a comment with\nseveral lines of text.',
footer: '',
examples: [
{
type: 'gfm',
language: 'js',
description: 'An example',
raw: '```js\nvar foo = bar;\nvar foo = bar;\nvar foo = bar;\n```',
val: '\nvar foo = bar;\nvar foo = bar;\nvar foo = bar;\n'
},
{
type: 'indented',
language: '',
description: 'Another example',
raw: ' var baz = fez;\n var baz = fez;\n var baz = fez;\n',
val: 'var baz = fez;\nvar baz = fez;\nvar baz = fez;\n'
},
{
type: 'indented',
language: '',
description: 'Another example',
raw: ' var baz = fez;\n var baz = fez;\n',
val: 'var baz = fez;\nvar baz = fez;\n'
},
{
type: 'gfm',
language: 'js',
description: 'And another example',
raw: '```js\nvar foo = bar;\nvar foo = bar;\n```',
val: '\nvar foo = bar;\nvar foo = bar;\n'
},
{
type: 'javadoc',
language: '',
description: 'Another example',
raw: '@example\nvar baz = fez;\n',
val: '\nvar baz = fez;\n'
},
{
type: 'javadoc',
language: '',
description: '',
raw: '@example\n// this is a comment\nvar alalla = zzzz;\n',
val: '\n// this is a comment\nvar alalla = zzzz;\n'
}
],
tags: [
{
type: 'tag',
raw: '@param {String} foo bar',
key: 'param',
val: '{String} foo bar'
},
{
type: 'tag',
raw: '@returns {Object} Instance of Foo',
key: 'returns',
val: '{Object} Instance of Foo'
},
{
type: 'tag',
raw: '@api public',
key: 'api',
val: 'public'
}
]
}
```## About
### Related projects
* [parse-comments](https://www.npmjs.com/package/parse-comments): Parse code comments from JavaScript or any language that uses the same format. | [homepage](https://github.com/jonschlinkert/parse-comments "Parse code comments from JavaScript or any language that uses the same format.")
* [snapdragon](https://www.npmjs.com/package/snapdragon): Easy-to-use plugin system for creating powerful, fast and versatile parsers and compilers, with built-in source-map… [more](https://github.com/jonschlinkert/snapdragon) | [homepage](https://github.com/jonschlinkert/snapdragon "Easy-to-use plugin system for creating powerful, fast and versatile parsers and compilers, with built-in source-map support.")
* [strip-comments](https://www.npmjs.com/package/strip-comments): Strip comments from code. Removes line comments, block comments, the first comment only, or all… [more](https://github.com/jonschlinkert/strip-comments) | [homepage](https://github.com/jonschlinkert/strip-comments "Strip comments from code. Removes line comments, block comments, the first comment only, or all comments. Optionally leave protected comments unharmed.")### Contributing
Pull requests and stars are always welcome. For bugs and feature requests, [please create an issue](../../issues/new).
Please read the [contributing guide](.github/contributing.md) for advice on opening issues, pull requests, and coding standards.
### Building docs
_(This project's readme.md is generated by [verb](https://github.com/verbose/verb-generate-readme), please don't edit the readme directly. Any changes to the readme must be made in the [.verb.md](.verb.md) readme template.)_
To generate the readme, run the following command:
```sh
$ npm install -g verbose/verb#dev verb-generate-readme && verb
```### Running tests
Running and reviewing unit tests is a great way to get familiarized with a library and its API. You can install dependencies and run tests with the following command:
```sh
$ npm install && npm test
```### Author
**Jon Schlinkert**
* [github/jonschlinkert](https://github.com/jonschlinkert)
* [twitter/jonschlinkert](https://twitter.com/jonschlinkert)### License
Copyright © 2017, [Jon Schlinkert](https://github.com/jonschlinkert).
Released under the [MIT License](LICENSE).***
_This file was generated by [verb-generate-readme](https://github.com/verbose/verb-generate-readme), v0.4.3, on March 16, 2017._