New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

all-the-links

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

all-the-links

Parse all links from HTML input.

  • 1.0.2
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
5
decreased by-16.67%
Maintainers
1
Weekly downloads
 
Created
Source

Parse all links from HTML input.

example

var links = require('all-the-links');
var fs = require('fs');

/**
 * <div>sup</div>
 * <a href="http://iojs.org">IOJS</a>
 * <a href="/about">About</a>
 */
var html = fs.createReadStream(__dirname + '/index.html');

html.pipe(links()).pipe(process.stdout);

Would print each href on a newline.

http://iojs.org
/about

methods

var l = links([html, callback])

Return a stream of urls parsed from html piped in to l. You may optionally pass in html and a callback to use the callback interface. Callback will contain err as the first argument if there is an error and an array of urls as the second argument if any are found.

usage

usage: all-the-links [FILE]

    Return newline delimited list of urls found in
    the provided HTML.

install

With npm, to get the library do:

npm install all-the-links

and to get the command do:

npm install -g all-the-links

license

MIT

Keywords

FAQs

Package last updated on 24 Jan 2015

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc