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

barnowl-relay

v0.1.5

Published

Command-line barnowl that relays the real-time stream of events to a remote server. We believe in an open Internet of Things.

Downloads

4

Readme

barnowl-relay

A remote server relay for barnowl

barnowl-relay is a simple command-line tool that relays data from radio-sensors to a remote server. A typical use case is to connect a reelyActive starter kit to the cloud via your PC or a Raspberry Pi.

Technically, barnowl-relay is simply an augmented barnowl instance, configured to relay its real-time stream of events to a remote server, typically a barnacles instance.

Installation

Windows and Mac

npm install -g barnowl-relay

Linux

sudo npm install -g barnowl-relay

Docker

docker pull reelyactive/barnowl-relay

Usage with USB Hub

For use with a minimal starter kit connected to the computer.

Relay to pareto.reelyactive.com (default)

barnowl-relay -s

Relay to www.hyperlocalcontext.com

barnowl-relay -s -h www.hyperlocalcontext.com

Usage with IP Hub

For use with a BLE starter kit or equivalent which is sending UDP packets to the computer.

Relay to pareto.reelyactive.com (default)

barnowl-relay -um

Relay to www.hyperlocalcontext.com

barnowl-relay -um -h www.hyperlocalcontext.com

Advanced Parameters

Verbose output

By default, barnowl-relay will only log errors to the console. To log all relayed messages, run as follows:

barnowl-relay -v

Relay to a specific host

By default, barnowl-relay will POST to pareto.reelyactive.com. To instead use mybarnacles.io, for instance, run as follows:

barnowl-relay -h mybarnacles.io

Relay to a specific port

By default, barnowl-relay will POST to port 80. To instead use port 8080, for instance, run as follows:

barnowl-relay -p 8080

Relay via a specific proxy server

By default, barnowl-relay will POST directly to the target host. To instead use a proxy server, for instance, run as follows:

barnowl-relay -x http://my.proxy.name

RTFM

barnowl-relay --help

What's next?

This is an active work in progress. Expect regular changes and updates, as well as improved documentation!

License

MIT License

Copyright (c) 2016 reelyActive

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.