vitals
Give Your JS Life
vitals is a foundational JavaScript library designed to replace all native string, object and array methods with just 16 base methods. It will improve your project's readability, stability and performance. It fixes core JS issues such as + overloading and unequal equality. Its additional methods will also allow you to more efficiently utilize immutability, strong typing, and node.js interactions with the file system or shell. Built with simplicity vitals hopes to inspire you to use functional JavaScript as the bedrock for all of your projects!
Own That String Example
// every root vitals method handles multiple operations// most handle responses for objects, arrays, and strings// sub vitals methods offer fine-grained control// watch this example of vitals owning stringy things var v i t a l s;var functional life; life = '123abc345XYZ';v = 'base';i = v; // "1245XYZ"t = v; // "12w3abcw345XYZ"a = v; // "XY"l = v; // [ "X", "Y", "Z" ]s = v; // "v123abc345XYZ"v; // truev; // truevis; // falsel = vto; // "X~Y~Z"vis; // true // goodbye confusing equalityvar same = 'same';var v = 1;var _ = '1';same; // true; // false
Install & Use
node.js
npm install node-vitals
var vitals = require('node-vitals')([...method|section])
browser
- download vitals.min.js
<script src="vitals.min.js"></script>
(add to html)vitals.<method>
(appended to window)
amd
- download vitals.min.js
require([ 'vitals' ], function(null) { ... })
vitals.<method>
(appended to window)
API
Base Methods | Strict Methods | File System Methods | Shell Methods |
---|---|---|---|
bind* | amend | copy | run |
copy | cap* | cut* | |
cut | create | get | |
each | freeze | to | |
fill | seal | ||
fuse | |||
get | |||
has | |||
is | |||
remap | |||
roll | |||
same | |||
slice | |||
to | |||
trim* | |||
until |
* Scheduled for future release.
Other Details
contributing: see contributing guideline
bugs/improvements: open an issue
questions: dev@vitalsjs.com
-- Happy Developing,