# @datagica/parse-social-handles

> Social network handle parser

Latest version **0.0.6** (published 2016-12-18) · GPL-3.0 license · 0 weekly downloads

## Install

```sh
npm install @datagica/parse-social-handles
pnpm add @datagica/parse-social-handles
yarn add @datagica/parse-social-handles
bun add @datagica/parse-social-handles
```

## Health

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

Positive: no vulnerabilities.

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

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.0.6 |
| Published | 2016-12-18 |
| First published | 2016-01-20 |
| Weekly downloads | 0 |
| License | GPL-3.0 |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 4 |
| Author | Julian Bilcke |
| Maintainers | datagica |

## Links

- npm: https://www.npmjs.com/package/@datagica/parse-social-handles
- Repository: https://github.com/datagica/parse-social-handles
- Homepage: https://github.com/datagica/parse-social-handles#readme
- Issues: https://github.com/datagica/parse-social-handles/issues
- npm.io page: https://npm.io/package/@datagica/parse-social-handles

## Recent versions

- 0.0.6 (latest) — 2016-12-18
- 0.0.5 — 2016-02-23
- 0.0.4 — 2016-02-23
- 0.0.3 — 2016-02-08
- 0.0.2 — 2016-02-06
- 0.0.1 — 2016-01-23
- 0.0.0 — 2016-01-20

## README

# @datagica/parse-social-handles

Parse common professional social network handles from a document:

+ Twitter
+ Skype
+ LinkedIn
+ Viadeo
+ Facebook

## Installation

    $ npm install --save @datagica/parse-social-handles

## Usage

```javascript
import parseSocialHandles from "@datagica/parse-social-handles";

parseSocialHandles("@Uber and @SpaceX decide to merge, announce a new automated space car for 2026").then(..).catch(..)
// will output:
[
  {
    "network": "Twitter",
    "username": "Uber",
    "url": "twitter.com/Uber"
  },
  {
    "network": "Twitter",
    "username": "SpaceX",
    "url": "twitter.com/SpaceX"
  }
]
```

## TODO

- more social networks

---
_Source: https://npm.io/package/@datagica/parse-social-handles · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
