1.0.1 • Published 6 years ago

social-link-extractor v1.0.1

Weekly downloads
8
License
ISC
Repository
github
Last release
6 years ago

Social Link Extractor

A small library to extract social profile links from HTML page.

Installation

npm install social-link-extractor

Usage

var social = require('social-link-extractor');

social.extract("https://www.bca.co.id/")
    .then((result)=>{
        console.log(JSON.stringify(result,null,4));
    })

Tests

npm test

Contributing

In lieu of a formal style guide, take care to maintain the existing coding style. Add unit tests for any new or changed functionality. Lint and test your code.