Package Exports
- node-programmer
- node-programmer/params
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (node-programmer) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
node-programmer
I hope it can become A coder/developer's assistant.
Using Params Library
This library provides an options parsing function.
Setting all avaliable options
Command Line
node . --long-option-with-value a-value --long-option-without-value-is-enabling -s "short" input1 input2 input3...
Example Usage
var optsAvailable = {
"table-selector": null,
"header-selector": null,
"row-selector": null,
"cell-selector": null,
"target-selector": null,
"output-type": "json",
"output-name": null,
"cell-delim": null,
"row-delim": null
};
Please see [this project][https://github.com/tyolab/table-exporter] from example usage.