Skip to content

Latest commit

 

History

History
60 lines (44 loc) · 2.05 KB

README.md

File metadata and controls

60 lines (44 loc) · 2.05 KB

toolz

schoolmarm-standard-style experimental phase ISC license

development tools for node, devtoolz.

This project is an everything I might possibly use, including kitchen sink, type of library. It will forever be experimental with the potential to change at any moment. The code focus is node. Server-side.

My present interest: streams, async-flow-control, generators, factory functions, bind, apply, call, errors, debugging, emitters, http and testing.

Why?

Eduction first and foremost.
Secondly, in just about every other discipline, craftspeople are expected to maintain their own tools.

Installation

$ npm install akileez\toolz

Usage

Require the methods you need. Each method is a separate module.

// individual methods
var nameOfDay = require('toolz/src/date/nameOfDay')
nameOfDay(new Date(), 2) // We (Wednesday)

var nameOfMonth = require('toolz/src/date/nameOfMonth')
nameOfMonth(new Date()) // June
nameOfMonth(new Date(), 3) // Jun

var extend = require('toolz/src/object/extend')
extend({}, {a: "Hello", b: "World"}) // {a: "Hello", b: "World"}

Documentation has been eliminated. Another solution is being developed.

See Also

License

ISC