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 🙏

© 2025 – Pkg Stats / Ryan Hefner

bloop

v0.1.3

Published

A set of command-line tools for working with Intel Edison on the PC side

Downloads

30

Readme

Bloop

Bloop is a CLI tool for help developers work on Intel Edison. Bleep is the partner library which you can use on the Edison board itself. Bloop is specifically meant to help automate basic tasks revolving around connecting to Edison, getting a terminal, copying files to it and SSH-ing into it.

I have built bloop to function, by default, as though there were a single Edison on your local network. Most of the connection commands will scan for and connect to the first Edison found. In the event that you have multiple Edisons all on the same network, I have provided the ability to scan and connect with those Edisons generally via an -e flag.

At this time, only Mac (Yosemite and similar) are supported

npm version

Commands:

$ bloop c

Automatically connects you via "screen" to an attached Edison device.

ex.: screen /dev/cu.usbserial-A402IDV3 115200 -L

$ bloop ssh [-u (specify a user other than root (default)), -e (specify an Edison into which to ssh, otherwise bloop picks the first one it finds)]

SSH's into your Edison via the local network by scanning for it using Bonjour and then initiating a connection command. Add a -u flag to specify a username other than root. Add -e to specify a specific Edison to ssh into, default behavior bloop picks the first one it finds (see bloop scan).

ex.: ssh [email protected]

$ bloop push [-u (specify a user other than root (default)), -d(specify a target directory), -e (specify an Edison into which to scp, otherwise bloop picks the first one it finds)]

Finds a local Edison and runs an "scp" (secure copy) command to deploy your current directory into Edison's ~/node_app_slot directory (default) using username "root." Add the -u option to specify a username other than "root."" Add -d to specify a target directory on the edison into which to deploy other than node_app_slot.

ex.: scp -r . [email protected]:/somedir

$ bloop list

List all Intel Edison devices currently connected to your PC via USB Serial.

ex.: /dev/cu.usbserial-A402IDV3

$ bloop clean [-a (all attached screen processes), -d (all detached screen processes)]

Wipes out all existing screen sessions and ensure Edison is ready to connect. Screen has a nasty tendency to leave detatched sessions behind which result in annoying and mysterious errors about "Can't find a PTY" or "Resource is busy." Just run bloop clean and you can kill all these detached sessions. You can manually specify attached or detached sessions only by adding the -a or -d options.

$ bloop scan [-r (show raw scan output)]

Scans locally available Bonjour services for the Intel XDK Daemon associated with an Intel Edison and reports on what it finds. If an Edison is found, you can ssh into the Edison's name (edison_name.local) using the 'bloop ssh' command. Add the -r tag to display the raw scan results. By default this command is meant for single-Edison environments. In public areas with many Edisons you can discover them all using 'bloop scan -r'

$ bloop sniff [-c (copy results to clipboard)]

Sniff simply lists any Intel Edison connected to your computer and outputs a connection string you can use to access it. Add -c to copy the results to your clipboard.

ex.: screen /dev/cu.usbserial-A402IDV3 115200 -L

$ bloop screens

List any existing screen sessions, attached or detatched.

ex.: Attached Screens: 657.ttys002.Rex-St-John--Intel (Attached)

Installation:

$ npm install -g bloop