fluentnode
Version:
Fluent apis for node (based on the concepts used in C#'s FluentSharp
50 lines (38 loc) • 1.63 kB
Markdown
<!--
the style tag below will hide the default docco title which in the current page is
index.md and doesn't make sense to show
-->
<style type="text/css">
#title { display : none; }
</style>
NodeJS's [FluentNode](https://github.com/o2platform/fluentnode) is a set of Fluent apis for node applications (based on the concepts used in O2 Platforms C#'s FluentSharp APIs) and
similar to UnderscoreJS except that FluentNode actualy extends the target Javascript objects)
## Install
To use clone the [GitHub repo](https://github.com/o2platform/fluentnode) or install using
```
npm install fluentnode --save
```
## Annotated source code
The extensions/protototypes are included the following files (and tests):
####Core Javascript classes
* [Array](Array.html) ([tests](Array.test.html))
* [Boolean](Boolean.html) ([tests](Boolean.test.html))
* [Function](Function.html) ([tests](Function.test.html))
* [Number](Number.html) ([tests](Number.test.html))
* [Object](Object.html) ([tests](Object.test.html))
* [String](String.html) ([tests](String.test.html))
####Node classes
* [console](console.html) ([tests](console.test.html))
* [fs](fs.html) ([tests](fs.test.html))
* [http](http.html) ([tests](http.test.html))
* [path](path.html) ([tests](path.test.html))
* [process](process.html) ([tests](process.test.html))
####Assert helpers
* [assert Array](assert_Array.html)
* [assert Boolean](assert_Boolean.html)
* [assert Function](assert_Function.html)
* [assert Number](assert_Number.html)
* [assert Object](assert_Object.html)
* [assert String](assert_String.html)
#### Other files
* [_register.js](_register.html)