# js-sorting-algo

> Sorting Algorithms in Javascript

Latest version **1.0.1** (published 2019-10-16) · GPL-3.0 license · 0 weekly downloads

## Install

```sh
npm install js-sorting-algo
pnpm add js-sorting-algo
yarn add js-sorting-algo
bun add js-sorting-algo
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.0.1 |
| Published | 2019-10-16 |
| First published | 2019-10-16 |
| Weekly downloads | 0 |
| License | GPL-3.0 |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Unpacked size | 43.8 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 1 |
| Author | Kumar Gaurav Mishra |
| Maintainers | kumar_gaurav_mishra |
| Keywords | DataStruture, sorting, algorithms, js-sorting-algorithms, js sorting, quickSort, bubbleSort, mergeSort, radixSort, insertionSort |

## Links

- npm: https://www.npmjs.com/package/js-sorting-algo
- Repository: https://github.com/kumar-gaurav-mishra/sort
- Homepage: https://github.com/kumar-gaurav-mishra/sort#readme
- Issues: https://github.com/kumar-gaurav-mishra/sort/issues
- npm.io page: https://npm.io/package/js-sorting-algo

## Alternatives

- [@progress/kendo-ooxml](https://npm.io/package/@progress/kendo-ooxml.md) — 152.1K weekly downloads
- [@progress/kendo-react-ripple](https://npm.io/package/@progress/kendo-react-ripple.md) — 8.0K weekly downloads
- [@progress/kendo-react-orgchart](https://npm.io/package/@progress/kendo-react-orgchart.md) — 4.3K weekly downloads
- [@praxisui/dynamic-fields](https://npm.io/package/@praxisui/dynamic-fields.md) — 2.4K weekly downloads
- [@mesalvo/react-ui](https://npm.io/package/@mesalvo/react-ui.md) — 1.7K weekly downloads

## Recent versions

- 1.0.1 (latest) — 2019-10-16

## README

# Sorting algorithms in javascript

### Currently supported sorting algorithms :

- quickSort
- selectionSort
- bubbleSort
- mergeSort
- radixSort
- insertionSort

### Installation & Usage :

```Installation

npm install js-sorting-algo

```

```Javascript

 const sort = require('js-sorting-algo');
 sort.quickSort([23, 25, 10, 2, 200]); // [2, 10, 23, 25, 200];
 sort.bubbleSort([23, 25, 10, 2, 200]); // [2, 10, 23, 25, 200];
 sort.selectionSort([23, 25, 10, 2, 200]); // [2, 10, 23, 25, 200];
 sort.mergeSort([23, 25, 10, 2, 200]); // [2, 10, 23, 25, 200];
 sort.radixSort([23, 25, 10, 2, 200]); // [2, 10, 23, 25, 200];
 sort.insertionSort([23, 25, 10, 2, 200]); // [2, 10, 23, 25, 200];

```

---
_Source: https://npm.io/package/js-sorting-algo · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
