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

browser-pipe

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

browser-pipe

Open URLs from stdin in the browser

0.3.0
latest
Source
npm
Version published
Weekly downloads
1
-90%
Maintainers
1
Weekly downloads
 
Created
Source

npm

browser-pipe

Build Status Dependency Status

Open URLs from stdin in the browser.

Usage

browser-pipe [--count=N] [--dry-run]
$ echo http://github.com | browser-pipe

browser-pipe forwards stdin to stdout, thus the original output is not modified:

$ ecstatic / | browser-pipe
ecstatic serving / at http://0.0.0.0:8000
--count=[-]N, -n[-]N

Open the first N links instead of all links. With the leading -, open the last N links.

$ curl "http://api.duckduckgo.com/?q=unicorn&format=xml&pretty=1" | browser-pipe -n2
--dry-run

Print URLs that would be opened, but do not open them.

API

browserPipe([opts])

Returns a writable stream.

Note: a single URL must not be split across multiple chunks of data in order to be recognized by this module. This is intentional. Open an issue if there is a legitimate use case where this property does not hold.

opts.count

Type: Number
Default: Infinity

If positive or zero, serves as the upper bound on the number of URLs to open.

If negative, gives the index of the first URL to print, counting from the end.

opts.open

Type: function(url)
Default: opn

URL opener.

Install

npm install browser-pipe

License

MIT

Keywords

browse

FAQs

Package last updated on 31 Dec 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