tb
v2.0.0
Published
The config-tree-builder allows the developer to specialize a configuration fast and without problems through an easy API.
Downloads
67
Maintainers
Readme
tb
Specify objects and its economy.
Goal
tb
gives you a bunch of functions to specify an object. You can assign booleans, functions, arrays, objects (adjustable and fully declared), numbers, strings and unknown values. Move through your object tree using chainable functions. The pipeline will never end (until you do a misstake or move out of your tree). Once your tree is ready you can pass an object to check the tree recursively for its correctness.
Take a look at the example/
folder or the API, to get an overview into tb
and its nature.
Inspiration: Symfony - Defining and Processing Configuration Values.
API | Changelog | Documentation
Install
npm install tb
Example
or
var builder = require('tb');
var definition = builder('package');
var result;
definition
.children()
.stringNode('name')
.isRequired()
.description('The package name')
.end()
.objectNode('developer')
.children()
.stringNode('name').isRequired().end()
.stringNode('email').isRequired().end()
.numberNode('age')
.isGreaterOrEqualThan(18)
.end()
.end()
.end()
.end()
;
try {
result = definition.deploy({
name: 'tb',
developer: {
name: 'Jon Doe',
email: '[email protected]'
}
});
} catch (error) {
console.error(error.path + ': ' + error.message);
}
CLI
tb doc <sources...> -o output [-v]
Generates the documentation for the given configuration tb files.
Example
tb example/generate-documentation/source-a.js example/generate-documentation/source-b.js -o dist/generated-documentation -v
Contribute
You want to help us? Cool, thanks!
It ist important to watch the given coding standards and to implement them.
At bottom it is very simple.
- Checkout of the repository.
- Run
npm i
. - Define the content and write some test for it.
- Implement the new functionality.
- Run
gulp test
- Create a pull-request
License
The MIT License (MIT)
Copyright (c) 2014 - 2015 Marc Binder [email protected]
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.