Plugin For JSDoc that converts Roku's BrightScriptDoc comments into comments compatible with JSDoc.
Especially designed to work with both Brightscript and Brighterscript.
Automatically pulls in function/sub name and param and return types. Can be overridden with more info as desired (description, param type override or param description). Automatically bases module off of file name but can be changed and used to combine multiple files into one module. Module is automatically applied to each sub/function in that file.
git clone https://github.com/markwpearce/brighterscript-jsdocs-plugin.git
cd brighterscript-jsdocs-plugin
npm install
npm run docs
Docs are output in docs folder.
- Install via NPM
npm install brighterscript-jsdocs-plugin --save-dev
I recommend using a custom template. I like https://github.com/braintree/jsdoc-template:
npm install braintree-jsdoc-template --save-dev
- Configure
Create a ./jsdoc.json
configuration file - https://jsdoc.app/about-configuring-jsdoc.html.
Example:
{
"plugins": [
"plugins/markdown",
"./node_modules/brighterscript-jsdocs-plugin/convert-brighterscript-docs.js"
],
"source": {
"include": [
"src" // directories with .bs/.brs files
],
"includePattern": ".+\\.br?s$"
},
"opts": {
"recurse": true,
"template": "node_modules/clean-jsdoc-theme", // or whatever template you've chosen - see below
"brighterscript-jsdocs-plugin": {
"addModule": true, // true by default - should we generate module names based on the file names?
"escapeHTMLCharacters": true // true by default - should we escape html characters (<>/&") in comments?
}
}
}
Note: If you are using Brighterscript Namespaces, they override any @module
setting in the code.
- Add a script to
package.json
like:
"scripts": {
"docs": "./node_modules/.bin/jsdoc -c jsdoc.json -d docs"
}
You can add these options to the jsdoc.json
file under opts.brighterscript-jsdocs-plugin
addModule
: Boolean (true
/false
) - Should we generate module names based on the file names? - defaults to true
escapeHTMLCharacters
: Boolean (true
/false
) - Should we escape html characters (<>/&"'
) in comments? - defaults to true
Run the script to generate documentation! (Documentation is put in the ./docs/
folder)
npm run docs
The default JSDocs template may not meet your needs. Here's a good list of templates that are available:
https://cancerberosgx.github.io/jsdoc-templates-demo/demo/
I recommend clean-jsdoc-theme
Internally, this plugin uses the Brighterscript parser. Brighterscript is a superset of Roku's Brightscript language, so plain old .brs files should be parsed properly.
If you have used BrightScriptDoc formatting for documentation, most comments should be parsed properly
Basic tags for functions and classes should work: @param, @return, etc. As this is a plugin for jsdoc, other tags that are included in the comments are passed through to jsdoc for interpretation.
It is not necessary to wrap BrightScript comments in javascript style comments, but the plugin should handle either situation.
These comments will be parsed the same:
' Give the maximum of two numbers
' @param {integer} x - the first number
' @param {integer} y - the second number
' @return {integer} the max of x and y
function maxBrsStyle(x, y)
if x > y
return x
end if
return y
end function
' /**
' * Give the maximum of two numbers
' * @param {integer} x - the first number
' * @param {integer} y - the second number
' * @return {integer} the max of x and y
' */
function maxJsStyle(x, y)
if x > y
return x
end if
return y
end function
' Namespace for testing
namespace TestBsDoc
' Test Brighterscript class
class TestBsKlass
prop as float = 1
' I like eating pie
someField as float = 3.14
' Constructor
'@param {string} name for this Class
function new(name as string) as void
m.name = name
end function
' Capitalizes a word
' @param {string} the word to capitalize
' @return the capitalized word
function capitalize(word as string) as string
return ucase(word)
end function
' Says hi to the given name
function sayHello() as string
return "hi " + m.name
end function
end class
end namespace