npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

bpipe

v0.0.2

Published

Browser <==> Unix Pipes

Downloads

5

Readme

bpipe

Browser <==> Unix Pipes

bpipe is a command line tool which allows you to create readable and writable streams between standard Unix Pipes and the browser.

Installation

npm install bpipe -g

Usage

  Usage: bpipe [server] [options]

  server: the location of the `bpipe-server` to connect to
          Defaults to localhost:8001

  Options:

    -h, --help               output usage information
    -V, --version            output the version number
    -s, --selector [string]  the CSS selector to attach to
    -e, --event [string]     the DOM event to attach to
    -u, --url [string]       the url to connect to

Examples

A hosted bpipe-server service is available at http://bpipe.io. This allows the use of bpipe without needing to setup a server.

You can also run a local server using the following command:

bpipe-server
open index.html

STDIN

Pipe data from a text <input> to less

bpipe -s "#myInput" -e "keyup" | less

Whenever the select box is changed in the browser, the new value will be piped to less

Pipe data from a <select> box to less

bpipe -s "#mySelect" -e "change" | less

Whenever the select box is changed in the browser, the new value will be piped to less

STDOUT

Pipe data from echo to a div's innerHTML

echo "hello there" | bpipe -s "#myDiv"

When this command is run the browser will update with "hello there"

Caveats

bpipe will only work if the custom .js file is loaded on the page you wish to interact with. You will also need to run a websocket server to facilitate communication between the browser and bpipe. A server and browser bundle are both included in this project. A free bpipe service is also available at http://bpipe.io

In the not so distant future perhaps browsers will natively support this type of interaction. Until then, we polyfill.

Can I actually use tail?

Of course! You can use any standard Unix tool. If you want to use tail it should work by creating a temporary file or named piped. less also works pretty well.

node bpipe.js -s "#mySelect" -e "change" > /tmp/select.log
tail -f /tmp/select.log

Open Ownership / Open Contribution

If anyone is interested in contributing to the project I would be glad to add additional contributors / owners.

Status

The current build is functional, but should be considered experimental. With a little more polish, bpipe could be a useful tool. If anyone wants to help further develop this tool feel free to reach out or start opening up pull requests.

TODO

  • Better querySelectorAll support
  • binding complex query statements
  • using selectors that contain more than one match
  • Add ability to open new pages with one line
  • echo "*Hello" | marked | bpipe index.html
  • Unit tests
  • The library needs unit tests.
  • Better configuration options for bpipe and bpipe-server
  • Allow bpipe and bpipe-server to specify host and port
  • Create .bpipe configuration file
  • Implement WebRTC communication to bypass having to pass data through server

Dependencies / Acknowledgements

License

MIT