An open API service indexing awesome lists of open source software.

https://github.com/rootslab/thrank

.
https://github.com/rootslab/thrank

Last synced: 8 months ago
JSON representation

.

Awesome Lists containing this project

README

          

### Thrank

[![NPM VERSION](http://img.shields.io/npm/v/thrank.svg?style=flat)](https://www.npmjs.org/package/thrank)
[![CODACY BADGE](https://img.shields.io/codacy/b18ed7d95b0a4707a0ff7b88b30d3def.svg?style=flat)](https://www.codacy.com/public/44gatti/thrank)
[![CODECLIMATE-TEST-COVERAGE](https://img.shields.io/codeclimate/c/rootslab/thrank.svg?style=flat)](https://codeclimate.com/github/rootslab/thrank)
[![LICENSE](http://img.shields.io/badge/license-MIT-blue.svg?style=flat)](https://github.com/rootslab/thrank#mit-license)

![NODE VERSION](https://img.shields.io/node/v/thrank.svg)
[![TRAVIS CI BUILD](http://img.shields.io/travis/rootslab/thrank.svg?style=flat)](http://travis-ci.org/rootslab/thrank)
[![BUILD STATUS](http://img.shields.io/david/rootslab/thrank.svg?style=flat)](https://david-dm.org/rootslab/thrank)
[![DEVDEPENDENCY STATUS](http://img.shields.io/david/dev/rootslab/thrank.svg?style=flat)](https://david-dm.org/rootslab/thrank#info=devDependencies)

[![NPM MONTHLY](http://img.shields.io/npm/dm/thrank.svg?style=flat)](http://npm-stat.com/charts.html?package=thrank)
[![NPM YEARLY](https://img.shields.io/npm/dy/thrank.svg)](http://npm-stat.com/charts.html?package=thrank)
[![NPM TOTAL](https://img.shields.io/npm/dt/thrank.svg)](http://npm-stat.com/charts.html?package=thrank)

[![NPM GRAPH](https://nodei.co/npm/thrank.png?downloads=true&downloadRank=true&stars=true)](https://nodei.co/npm/thrank/)

> __Thrank__. Empty.

### Table of Contents

- __[Install](#install)__
- __[Run Tests](#run-tests)__
- __[Run Benchmarks](#run-benchmarks)__
- __[Constructor](#constructor)__
- __[Properties](#properties)__
- __[Methods](#methods)__
- __[do](#thrank.do)__
- __[Events](#events)__
- __[Examples](#examples)__
- __[MIT License](#mit-license)__

------------------------------------------------------------------------------

### Install

```bash
$ npm install thrank [-g]
```

> __require__:

```javascript
const Thrank = require( 'thrank' );
```

### Run Tests

> __to run all test files, install devDependencies:__

```bash
$ cd thrank/
# install or update devDependencies
$ npm install
# run tests
$ npm test
```

> __to execute a single test file simply do__:

```bash
$ node test/file-name.js
```

### Run Benchmarks

```bash
$ cd thrank/
$ npm run bench
```

> __to execute a single bench file, simply do__:

```bash
$ node bench/file-name.js
```

### Constructor

> Arguments between [ ] are optional.

```javascript
Thrank( [ Buffer sequence | String sequence | Number sequence ] )
```
> or
```javascript
new Thrank( [ Buffer sequence | String sequence | Number sequence ] )
```
> __NOTE__: default is.

### Properties

> __NOTE__: do not mess up with these properties.

##### Thrank.
```javascript
//
```

##### Thrank.
```javascript
//
```

### Methods

> Arguments between [ ] are optional.

| name | description |
|:------------------------|:-----------------------------------------------------------------|
| __[do](#skeldo)__ | `...` |

#### Thrank.do
> ##### .
```javascript
```

### Events

```javascript
/*
*
*/

```

### Examples

#### ..:

> - __[](example/thrank-example.js)__
> - ...

> See __[examples](example/)__.

### MIT License

> Copyright (c) 2018-present < Guglielmo Ferri : 44gatti@gmail.com >

> Permission is hereby granted, free of charge, to any person obtaining
> a copy of this software and associated documentation files (the
> 'Software'), to deal in the Software without restriction, including
> without limitation the rights to use, copy, modify, merge, publish,
> distribute, sublicense, and/or sell copies of the Software, and to
> permit persons to whom the Software is furnished to do so, subject to
> the following conditions:

> __The above copyright notice and this permission notice shall be
> included in all copies or substantial portions of the Software.__

> THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
> EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
> MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
> IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
> CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
> TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
> SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.