Skip to content
This repository has been archived by the owner on Dec 20, 2023. It is now read-only.

Commit

Permalink
Merge pull request #102 from janmonterrubio/patch-1
Browse files Browse the repository at this point in the history
Fix links to github pages
  • Loading branch information
dustinsmith1024 authored May 17, 2023
2 parents 1121fc2 + 35b359b commit 7fb23d2
Showing 1 changed file with 31 additions and 31 deletions.
62 changes: 31 additions & 31 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,54 +8,54 @@

Framework for node that provides a one stop shop for frequently needed utilities, including:

* [OO utilties](http://c2fo.github.com/comb/define.html)
* [OO utilties](http://c2fo.github.io/comb/define.html)
* Collections
* [Logging](http://c2fo.github.com/comb/logging.html)
* [String & date formatting](http://c2fo.github.com/comb/utilities)
* [Flow control](http://c2fo.github.com/comb/promise.html)
* [Logging](http://c2fo.github.io/comb/logging.html)
* [String & date formatting](http://c2fo.github.io/comb/utilities)
* [Flow control](http://c2fo.github.io/comb/promise.html)


## Installation

`npm install comb`

### [Getting Started](http://c2fo.github.com/comb/introduction.html)
### [Getting Started](http://c2fo.github.io/comb/introduction.html)

## Highlights

* 100% test coverage!
* comb([define](http://c2fo.github.com/comb/comb.html#.define)|[singleton](http://c2fo.github.com/comb/comb.html#.singleton))
* comb([define](http://c2fo.github.io/comb/comb.html#.define)|[singleton](http://c2fo.github.io/comb/comb.html#.singleton))
* The backbone of comb.
* Options for classical inheritance models as well as mixins(pseudo multi-inheritance)
* You can call this._super from any method. Including statically defined ones!
* Access to your class level properties within an instance
* [Logging](http://c2fo.github.com/comb/logging.html)
* [Logging](http://c2fo.github.io/comb/logging.html)
* Logger inheritance through name spaces
* Predefined [level](http://c2fo.github.com/comb/comb_logging_Level.html) level definition along with the ability to define your own.
* Predefined [level](http://c2fo.github.io/comb/comb_logging_Level.html) level definition along with the ability to define your own.
* Multiple appenders including
* [FileAppender](http://c2fo.github.com/comb/comb_logging_appenders_FileAppender.html) - log it to a file
* [RollingFileAppender](http://c2fo.github.com/comb/comb_logging_appenders_RollingFileAppender.html) - log it to a file up to a customizable size then create a new one.
* [JSONAppender](http://c2fo.github.com/comb/comb_logging_appenders_JSONAppender.html) - write it out as JSON to a file.
* [ConsoleAppender](http://c2fo.github.com/comb/comb_logging_appenders_ConsoleAppender.html)- log it to the console
* Configurable with [files OR programatically](http://c2fo.github.com/comb/comb_logger.html#.configure)
* [FileAppender](http://c2fo.github.io/comb/comb_logging_appenders_FileAppender.html) - log it to a file
* [RollingFileAppender](http://c2fo.github.io/comb/comb_logging_appenders_RollingFileAppender.html) - log it to a file up to a customizable size then create a new one.
* [JSONAppender](http://c2fo.github.io/comb/comb_logging_appenders_JSONAppender.html) - write it out as JSON to a file.
* [ConsoleAppender](http://c2fo.github.io/comb/comb_logging_appenders_ConsoleAppender.html)- log it to the console
* Configurable with [files OR programatically](http://c2fo.github.io/comb/comb_logger.html#.configure)
* Collections
* [RedBlackTree](http://c2fo.github.com/comb/comb_collections_RedBlackTree.html)
* [AVLTree](http://c2fo.github.com/comb/comb_collections_AVLTree.html)
* [AnderssonTree](.http://c2fo.github.com/combcomb_collections_AnderssonTree.html)
* [BinaryTree](http://c2fo.github.com/comb/comb_collections_BinaryTree.html)
* [HashTable](http://c2fo.github.com/comb/comb_collections_HashTable.html)
* [MaxHeap](http://c2fo.github.com/comb/comb_collections_MaxHeap.html)
* [MinHeap](http://c2fo.github.com/comb/comb_collections_MinHeap.html)
* [Pool](http://c2fo.github.com/comb/comb_collections_Pool.html)
* [PriorityQueue](http://c2fo.github.com/comb/comb_collections_PriorityQueue.html)
* [Queue](http://c2fo.github.com/comb/comb_collections_Queue.html)
* [Stack](http://c2fo.github.com/comb/comb_collections_Stack.html)

* [Flow control](http://c2fo.github.com/comb/promise.html)
* [Promises](http://c2fo.github.com/comb/comb_Promise.html)
* [PromiseList](http://c2fo.github.com/comb/comb_PromiseList.html)
* [comb.when](http://c2fo.github.com/comb/comb.html#.when)
* [comb.serial](http://c2fo.github.com/comb/comb.html#.serial)
* [RedBlackTree](http://c2fo.github.io/comb/comb_collections_RedBlackTree.html)
* [AVLTree](http://c2fo.github.io/comb/comb_collections_AVLTree.html)
* [AnderssonTree](.http://c2fo.github.io/combcomb_collections_AnderssonTree.html)
* [BinaryTree](http://c2fo.github.io/comb/comb_collections_BinaryTree.html)
* [HashTable](http://c2fo.github.io/comb/comb_collections_HashTable.html)
* [MaxHeap](http://c2fo.github.io/comb/comb_collections_MaxHeap.html)
* [MinHeap](http://c2fo.github.io/comb/comb_collections_MinHeap.html)
* [Pool](http://c2fo.github.io/comb/comb_collections_Pool.html)
* [PriorityQueue](http://c2fo.github.io/comb/comb_collections_PriorityQueue.html)
* [Queue](http://c2fo.github.io/comb/comb_collections_Queue.html)
* [Stack](http://c2fo.github.io/comb/comb_collections_Stack.html)

* [Flow control](http://c2fo.github.io/comb/promise.html)
* [Promises](http://c2fo.github.io/comb/comb_Promise.html)
* [PromiseList](http://c2fo.github.io/comb/comb_PromiseList.html)
* [comb.when](http://c2fo.github.io/comb/comb.html#.when)
* [comb.serial](http://c2fo.github.io/comb/comb.html#.serial)

## License

Expand All @@ -65,5 +65,5 @@ MIT <https://github.com/c2fo/comb/raw/master/LICENSE>
## Meta

* Code: `git clone git://github.com/c2fo/comb.git`
* JsDoc: <http://c2fo.github.com/comb>
* JsDoc: <http://c2fo.github.io/comb>
* Website: <http://c2fo.com> - Twitter: <http://twitter.com/c2fo> - 877.465.4045

0 comments on commit 7fb23d2

Please sign in to comment.