GitXplorerGitXplorer
m

tb

public
6 stars
1 forks
0 issues

Commits

List of commits on branch master.
Unverified
54b4097b0beb3683470c101f86dd84c20140890e

Finish 2.0.0

mm19c committed 9 years ago
Unverified
0eb24c4ec837c48b3a451dd51156740ee75d4fdd

Update jsdoc

mm19c committed 9 years ago
Unverified
66c167f38b842984e126bd2d1d08003c37680eaf

Update README.md

mm19c committed 9 years ago
Unverified
93a91190bb14a55f243cff07fdd65263b4098455

Update README.md

mm19c committed 9 years ago
Unverified
35a20e8f2b713d61779646ab5c6d9bfd5e4fcb82

Add gifs

mm19c committed 9 years ago
Unverified
5ae2593bccd93ad08911a63ca7d59324240633df

Release the first beta

mm19c committed 9 years ago

README

The README file for this repository.

tb

Code Climate Test Coverage Build Status Dependency Status npm Open The Docs

NPM

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

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: 'jon@doe.com'
    }
  });
} 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.

  1. Checkout of the repository.
  2. Run npm i.
  3. Define the content and write some test for it.
  4. Implement the new functionality.
  5. Run gulp test
  6. Create a pull-request

License

The MIT License (MIT)

Copyright (c) 2014 - 2015 Marc Binder marcandrebinder@gmail.com

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.