Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/schteppe/jox
Source code documentation generator for JavaScript
https://github.com/schteppe/jox
Last synced: 11 days ago
JSON representation
Source code documentation generator for JavaScript
- Host: GitHub
- URL: https://github.com/schteppe/jox
- Owner: schteppe
- Created: 2013-05-14T15:13:08.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2013-05-23T06:27:57.000Z (over 11 years ago)
- Last Synced: 2024-10-30T03:49:29.417Z (about 2 months ago)
- Language: JavaScript
- Size: 242 KB
- Stars: 5
- Watchers: 5
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# jox
```jox``` maps comments in your source to custom HTML. The comments are written using JSDoc-style tags and Markdown syntax, and the HTML is rendered using your own EJS or Jade templates. This makes it possible to make super-customized documentation for your code.### Install
```
npm install jox -g
```### Usage
#### 1. Document your code
Example:
```javascript
/**
* Computes the sum of two numbers.
* @function
* @param {number} a
* @param {number} b
* @return {number} The sum.
*/
function add(a,b) {
return a+b;
}
```
Say you save this file as ```src/add.js```.#### 2. Create an .ejs or .jade template
```
My first jox template
<%
for(var i=0; i
<%=c.ctx.name%>
<%-c.description.full%>
<%
}
%>```
For more information on how to write EJS templates, visit http://embeddedjs.com/. You can also use [Jade](http://jade-lang.com/).In the template you have access to the ```comments``` array produced by [dox](https://github.com/visionmedia/dox), as well as a few nifty functions provided by jox. For more information about what information the ```comments``` contains, visit the [dox github page](https://github.com/visionmedia/dox).
Let's say you save the above file in your project folder as ```doc/template.ejs```.
#### 3. Create a file ```.jox``` in the root of your project folder
Example:
```javascript
{
"source" : ["src/add.js"],
"template" : "doc/template.ejs",
"destination" : "doc/index.html"
}
```
This instructs ```jox``` scan the JavaScript file of yours, use the template ```doc/template.ejs``` and produce a HTML file ```doc/index.html```.#### 4. Run jox
```
jox
```
Done! Now you can view ```doc/index.html``` in a web browser. It will look something like this:
```html
My first template
add
Computes the sum of two numbers.
```
Note: if you need external files for your HTML (css, javascript, images, etc.), you need to add them manually. In this case, they could have been placed in ```doc/```.
### Local variables in the template
#### comments : Array
The comments generated by [dox](https://github.com/visionmedia/dox). They are parsed from all files, one at a time, and concatenated in this ```comments``` array. jox adds a "file" property to each comment so you know where it was parsed.
```javascript
[
{
"tags": [{ "type": "method", ... }, ... ],
"description": { "full": "some html
", ... },
"code": "...",
"ctx": { "type": "method", ... },
"file":"src/filename.js"
},
...
]
```
The other nifty things available inside the templates are described in the [sample documentation](doc/index.html).### License
The MIT License (MIT)Copyright (c) 2013 jox authors
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.