
Security News
PodRocket Podcast: Inside the Recent npm Supply Chain Attacks
Socket CEO Feross Aboukhadijeh discusses the recent npm supply chain attacks on PodRocket, covering novel attack vectors and how developers can protect themselves.
Donna is a tool for generating CoffeeScript metadata for the purpose of generating API documentation. It reads your CoffeeScript module, and outputs an object indicating the locations and other data about your classes, properties, methods, etc.
It pulled out of biscotto.
The Donna metadata format is a very raw format indicating the locations of objects like classes, functions, and imports within files of a CoffeeScript module. Included in the metadata are unmolested doc strings for these objects.
An Example:
# Public: A mutable text container with undo/redo support and the ability to
# annotate logical regions in the text.
#
class TextBuffer
@prop2: "bar"
# Public: Takes an argument and does some stuff.
#
# a - A {String}
#
# Returns {Boolean}.
@method2: (a) ->
Generates metadata:
{
"files": {
"spec/metadata_templates/classes/class_with_prototype_properties.coffee": {
"objects": {
"3": {
"0": {
"type": "class",
"name": "TextBuffer",
"bindingType": null,
"classProperties": [],
"prototypeProperties": [
[
4,
9
],
[
11,
11
]
],
"doc": " Public: A mutable text container with undo/redo support and the ability to\nannotate logical regions in the text.\n\n ",
"range": [
[
3,
0
],
[
11,
17
]
]
}
},
"4": {
"9": {
"name": "prop2",
"type": "primitive",
"range": [
[
4,
9
],
[
4,
13
]
],
"bindingType": "prototypeProperty"
}
},
"11": {
"11": {
"name": "method2",
"bindingType": "prototypeProperty",
"type": "function",
"paramNames": [
"a"
],
"range": [
[
11,
11
],
[
11,
16
]
],
"doc": " Public: Takes an argument and does some stuff.\n\na - A {String}\n\nReturns {Boolean}. "
}
}
},
"exports": {}
}
}
}
The Donna metadata format is doc-string-format agnostic. Use tomdoc? Javadoc? Markdown? With this format, you should be able to generate your own API docs with any doc format parser you like.
Donna currently has a counterpart named tello that generates an easily digestible json format using the atomdoc format on the docs strings from Donna output.
npm install donna
donna = require 'donna'
metadata = donna.generateMetadata(['/path/to/my-module', '/path/to/another-module'])
Pass it the top level directory of your module. It will read the
package.json
file and index any .coffee
files from within the src
, app
,
or lib
directories:
donna -o donna.json /path/to/my-module
It handles multiple modules. Each should have a package.json
file. It will
place the results from both modules in the donna.json
file.
donna -o donna.json /path/to/my-module /path/to/another-module
(The MIT License)
Copyright (c) 2014 GitHub
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.
FAQs
A CoffeeScript documentation generator.
The npm package donna receives a total of 147 weekly downloads. As such, donna popularity was classified as not popular.
We found that donna demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 5 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Socket CEO Feross Aboukhadijeh discusses the recent npm supply chain attacks on PodRocket, covering novel attack vectors and how developers can protect themselves.
Security News
Maintainers back GitHub’s npm security overhaul but raise concerns about CI/CD workflows, enterprise support, and token management.
Product
Socket Firewall is a free tool that blocks malicious packages at install time, giving developers proactive protection against rising supply chain attacks.