https://github.com/garrettmac/lowbar
https://github.com/garrettmac/lowbar
Last synced: 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/garrettmac/lowbar
- Owner: garrettmac
- License: other
- Created: 2017-09-02T01:06:34.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2018-02-21T18:49:14.000Z (over 7 years ago)
- Last Synced: 2024-10-06T01:23:19.114Z (8 months ago)
- Language: JavaScript
- Size: 156 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG
- License: LICENSE
Awesome Lists containing this project
README
# lowbar v4.17.4
[Site](https://lowbar.com/) |
[Docs](https://lowbar.com/docs) |
[FP Guide](https://github.com/garrettmac/lowbar/wiki/FP-Guide) |
[Contributing](https://github.com/garrettmac/lowbar/blob/master/.github/CONTRIBUTING.md) |
[Wiki](https://github.com/garrettmac/lowbar/wiki "Changelog, Roadmap, etc.") |
[Code of Conduct](https://js.foundation/community/code-of-conduct) |
[Twitter](https://twitter.com/bestiejs) |
[Chat](https://gitter.im/garrettmac/lowbar)The [lowbar](https://lowbar.com/) library exported as a [UMD](https://github.com/umdjs/umd) module.
Generated using [lowbar-cli](https://www.npmjs.com/package/lowbar-cli):
```shell
$ npm run build
$ lowbar -o ./dist/lowbar.js
$ lowbar core -o ./dist/lowbar.core.js
```## Download
* [Core build](https://raw.githubusercontent.com/garrettmac/lowbar/4.17.4/dist/lowbar.core.js) ([~4 kB gzipped](https://raw.githubusercontent.com/garrettmac/lowbar/4.17.4/dist/lowbar.core.min.js))
* [Full build](https://raw.githubusercontent.com/garrettmac/lowbar/4.17.4/dist/lowbar.js) ([~24 kB gzipped](https://raw.githubusercontent.com/garrettmac/lowbar/4.17.4/dist/lowbar.min.js))
* [CDN copies](https://www.jsdelivr.com/projects/lowbar) [](https://www.jsdelivr.com/package/npm/lowbar)lowbar is released under the [MIT license](https://raw.githubusercontent.com/garrettmac/lowbar/4.17.4/LICENSE) & supports modern environments.
Review the [build differences](https://github.com/garrettmac/lowbar/wiki/build-differences) & pick one that’s right for you.## Installation
In a browser:
```html```
Using npm:
```shell
$ npm i -g npm
$ npm i --save lowbar
```In Node.js:
```js
// Load the full build.
var _ = require('lowbar');
// Load the core build.
var _ = require('lowbar/core');
// Load the FP build for immutable auto-curried iteratee-first data-last methods.
var fp = require('lowbar/fp');// Load method categories.
var array = require('lowbar/array');
var object = require('lowbar/fp/object');// Cherry-pick methods for smaller browserify/rollup/webpack bundles.
var at = require('lowbar/at');
var curryN = require('lowbar/fp/curryN');
```**Note:**
Install [n_](https://www.npmjs.com/package/n_) for lowbar use in the Node.js < 6 REPL.## Why lowbar?
lowbar makes JavaScript easier by taking the hassle out of working with arrays,
numbers, objects, strings, etc. lowbar’s modular methods are great for:* Iterating arrays, objects, & strings
* Manipulating & testing values
* Creating composite functions## Module Formats
lowbar is available in a [variety of builds](https://lowbar.com/custom-builds) & module formats.
* [lowbar](https://www.npmjs.com/package/lowbar) & [per method packages](https://www.npmjs.com/browse/keyword/lowbar-modularized)
* [lowbar-es](https://www.npmjs.com/package/lowbar-es), [babel-plugin-lowbar](https://www.npmjs.com/package/babel-plugin-lowbar), & [lowbar-webpack-plugin](https://www.npmjs.com/package/lowbar-webpack-plugin)
* [lowbar/fp](https://github.com/garrettmac/lowbar/tree/npm/fp)
* [lowbar-amd](https://www.npmjs.com/package/lowbar-amd)