Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/make-github-pseudonymous-again/js-median
:raised_hands: Median searching code bricks for JavaScript
https://github.com/make-github-pseudonymous-again/js-median
agpl algorithms computer-science javascript median sorting
Last synced: about 1 month ago
JSON representation
:raised_hands: Median searching code bricks for JavaScript
- Host: GitHub
- URL: https://github.com/make-github-pseudonymous-again/js-median
- Owner: make-github-pseudonymous-again
- License: agpl-3.0
- Created: 2015-07-06T08:35:29.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2021-04-26T14:09:12.000Z (over 3 years ago)
- Last Synced: 2024-10-08T06:18:01.861Z (about 1 month ago)
- Topics: agpl, algorithms, computer-science, javascript, median, sorting
- Language: JavaScript
- Homepage: https://aureooms.github.io/js-median
- Size: 76.2 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[js-median](http://make-github-pseudonymous-again.github.io/js-median)
==Median searching code bricks for JavaScript
[![License](https://img.shields.io/github/license/make-github-pseudonymous-again/js-median.svg?style=flat)](https://raw.githubusercontent.com/make-github-pseudonymous-again/js-median/master/LICENSE)
[![NPM version](https://img.shields.io/npm/v/@aureooms/js-median.svg?style=flat)](https://www.npmjs.org/package/@aureooms/js-median)
[![Bower version](https://img.shields.io/bower/v/@aureooms/js-median.svg?style=flat)](http://bower.io/search/?q=@aureooms/js-median)
[![Build Status](https://img.shields.io/travis/make-github-pseudonymous-again/js-median.svg?style=flat)](https://travis-ci.org/make-github-pseudonymous-again/js-median)
[![Coverage Status](https://img.shields.io/coveralls/make-github-pseudonymous-again/js-median.svg?style=flat)](https://coveralls.io/r/make-github-pseudonymous-again/js-median)
[![Dependencies Status](https://img.shields.io/david/make-github-pseudonymous-again/js-median.svg?style=flat)](https://david-dm.org/make-github-pseudonymous-again/js-median#info=dependencies)
[![devDependencies Status](https://img.shields.io/david/dev/make-github-pseudonymous-again/js-median.svg?style=flat)](https://david-dm.org/make-github-pseudonymous-again/js-median#info=devDependencies)
[![Code Climate](https://img.shields.io/codeclimate/github/make-github-pseudonymous-again/js-median.svg?style=flat)](https://codeclimate.com/github/make-github-pseudonymous-again/js-median)
[![NPM downloads per month](https://img.shields.io/npm/dm/@aureooms/js-median.svg?style=flat)](https://www.npmjs.org/package/@aureooms/js-median)
[![GitHub issues](https://img.shields.io/github/issues/make-github-pseudonymous-again/js-median.svg?style=flat)](https://github.com/make-github-pseudonymous-again/js-median/issues)
[![Inline docs](http://inch-ci.org/github/make-github-pseudonymous-again/js-median.svg?branch=master&style=shields)](http://inch-ci.org/github/make-github-pseudonymous-again/js-median)Can be managed through [jspm](https://github.com/jspm/jspm-cli),
[duo](https://github.com/duojs/duo),
[component](https://github.com/componentjs/component),
[bower](https://github.com/bower/bower),
[ender](https://github.com/ender-js/Ender),
[jam](https://github.com/caolan/jam),
[spm](https://github.com/spmjs/spm),
and [npm](https://github.com/npm/npm).## Install
### jspm
```terminal
jspm install github:aureooms/js-median
# or
jspm install npm:@aureooms/js-median
```
### duo
No install step needed for duo!### component
```terminal
component install aureooms/js-median
```### bower
```terminal
bower install @aureooms/js-median
```### ender
```terminal
ender add @aureooms/js-median
```### jam
```terminal
jam install @aureooms/js-median
```### spm
```terminal
spm install @aureooms/js-median --save
```### npm
```terminal
npm install @aureooms/js-median --save
```## Require
### jspm
```js
let median = require( "github:aureooms/js-median" ) ;
// or
import median from '@aureooms/js-median' ;
```
### duo
```js
let median = require( "aureooms/js-median" ) ;
```### component, ender, spm, npm
```js
let median = require( "@aureooms/js-median" ) ;
```### bower
The script tag exposes the global variable `median`.
```html```
Alternatively, you can use any tool mentioned [here](http://bower.io/docs/tools/).### jam
```js
require( [ "@aureooms/js-median" ] , function ( median ) { ... } ) ;
```