Git Product home page Git Product logo

redash's Introduction

Redash

Build Status dependencies Status

Check out the API docs!

The missing standard library for JavaScript. This lightweight library is meant to fill the gap between Ramda (functional) and Lodash (performance) while providing you with the tools you need to write sane JavaScript. This means that all functions treat data as immutable structures, compare objects by value instead of by reference, and offer the right mix of flexibility and composability.

  1. Why
  2. Usage
  3. Comparisons

Why?

First Class Functional Programming

Redash is designed to encourage functional programming styles without sacrificing the utility you're used to. What sets it apart is that, unlike some other libraries that simply offer FP-ish wrappers, functional programming is a first class citizen in Redash. Here's what that means for you:

  • Immutability — Redash will never mutate your data; objects are always shallowly copied.
  • Equality — Objects are compared by value, not reference. Work with data in a meaningful way without concerning yourself with how it's stored in memory.
  • Flexibility — Functional programming patterns don't always translate well to idiomatic JavaScript, so Redash takes the approach of pursuing functional programming patterns insofar as it produces understandable and idiomatic JavaScript. This means Redash sacrifices auto-curry and non-variadic functions for larger benefits such as performance, ES2015+ interop, and general utility.
  • Size — Redash comes in at just 12.6kb before gzip. Combine this with its use ES2015 modules and Rollup for module flattening, and you can rest easy when adding it to your project.
  • Simplicity — Redash strives to be as simple as possible despite its flexible API; it trades magic for explicitness, even at the cost of a few characters. For example, Lodash's get('foo.bar.baz') becomes getIn(['foo', 'bar', 'baz']), which is closer to Ramda's path(['foo', 'bar', 'baz']). This helps to eliminate confusion for less common cases that are nevertheless valid.

Built for the Next Generation of JavaScript

The Redash codebase is written with ES2015 modules and packaged with rollup so you to take advantage of tree shaking without the need for extra tooling. Redash also offers complete typings for TypeScript users so that you can work with its API with complete confidence.

Usage

# Yarn (Recommended)
yarn add redash

# NPM (Alternative)
npm install --save redash

After that's done, just import it in your code and get on to building awesome stuff. If you haven't already done so, you should check out the API documentation to see what functions are available and learn how to use them. Here are a few of the most common ways to use Redash:

ES2015 Module

import * as _ from 'redash'       // import everything
import { map, get } from 'redash' // or just what you need

CommonJS

const _ = require('redash')            // import everything
const { map, get } = require('redash') // or just what you need

Installer

If you have full control over your codebase and don't want to continually import/prefix all of the functions, you can install the library to a context.

import install from 'redash/installer'

install(global)

// Now all of the functions are available on the scope you installed it to:
get('name', { name: 'Michael' }) // => 'Michael'

Comparisons

Category Redash Ramda Lodash Lodash/FP
Minified (kb) 12.6 44.7 71.4 71.4
100% Immutable Yes Yes No Yes
Auto-Curry No Yes No Yes
Object Equality Value Value Reference Reference
IE 9+ Yes Yes Yes Yes

redash's People

Contributors

levithomason avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar

redash's Issues

`pipe` throws wrong error with bad parameter

When passing several functions as arguments to pipe:

_.pipe(
  _.keys,
  _.map(x => x)
)([1, 2, 3])

You get this error:

Invalid argument supplied to `pipe`. The value at index [0] was not a function; what was received was of type: Nil.

However, I believe the error should say something like, "The value must be an array" or similar.

Pad methods?

Curious if it is in the interest of this lib to support methods for padding strings.

Interactive doc errors

It's wonderful to see klipse on redash!

I've gone over the interactive doc and discovered a couple of errors:

image

image

image

image

image

image
image

image

image

image

README Documentation

  • Update tabular data
  • Better descriptions of pros/cons vs. both lodash and ramda

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.