# js-connection-recommender

> Package implements connection recommender

Latest version **1.0.4** (published 2017-06-11) · MIT license · 0 weekly downloads

## Install

```sh
npm install js-connection-recommender
pnpm add js-connection-recommender
yarn add js-connection-recommender
bun add js-connection-recommender
```

Provides the command `js-crec`.

## 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.4 |
| Published | 2017-06-11 |
| First published | 2017-06-11 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 1 |
| Author | Caishun Chen |
| Maintainers | cschen1205 |
| Keywords | recommendation, connection recommendation |

## Links

- npm: https://www.npmjs.com/package/js-connection-recommender
- Repository: https://github.com/cschen1205/js-connection-recommender
- Homepage: https://github.com/cschen1205/js-connection-recommender#readme
- Issues: https://github.com/cschen1205/js-connection-recommender/issues
- npm.io page: https://npm.io/package/js-connection-recommender

## Recent versions

- 1.0.4 (latest) — 2017-06-11

## README

# js-connection-recommender

Javascript package that recommend common friend that help to make connection to new friends


[![Build Status](https://travis-ci.org/cschen1205/js-connection-recommender.svg?branch=master)](https://travis-ci.org/cschen1205/js-connection-recommender) [![Coverage Status](https://coveralls.io/repos/github/cschen1205/js-connection-recommender/badge.svg?branch=master)](https://coveralls.io/github/cschen1205/js-connection-recommender?branch=master) 

# install

npm install js-connection-recommender

# Usage 

```javascript
var jscrec = require("js-connection-recommender");
var adj = {};
adj["Alice"] = [ "Bob", "Carole" ]; // Alice knows Bob and Carole
adj["Bob"] = ["Dave", "Jack", "Alice"]; // Bob knowns Dave, Jack and Alice
var result = jscrec.fitAndTransform(adj);
console.log(result);
```

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