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

serialbot

v0.0.2

Published

A simple command line utility to communicate between a serial port (like the output of an Arduino) and a web browser via sockets.

Downloads

8

Readme

SerialBot

A simple command line utility to communicate between a serial port (like the output of an Arduino) and a web browser via sockets. This can be useful for visualization of hardware. Currently, this is read-only and you cannot write to the serial port at the moment.

Install

npm install serialbot -g

Use

List all available serial ports:

serialbot list

Start the serialbot server, using a path from the list command:

serialbot start /dev/cu.usbmodemXXX

This will make a connection to the serial port and start an HTTP server that allows for a socket connection via socket.io.

<!DOCTYPE HTML>
<html>
<head>
  <title>SerialBot example</title>
</head>
<body>

  <!-- This is what is being served -->
  <script src="//localhost:8899/socket.io/socket.io.js"></script>

  <!-- Example connection -->
  <script type="text/javascript">
    // Connect to socket
    var serialbot = io.connect('//localhost:8899/');

    // Do something with the data
    serialbot.on('data', function(data) {
      console.log('Serial data received: ', data);
    });
  </script>
</body>
</html>

See the examples folder for some more extensive, but still basic examples for an HTML page and an Arduino sketch.

Serial parsing

By default the serialport module just passes through the Buffer data. This module uses the provided serialport.parsers.readline('\n') parser for serial reading by default, meaning that each data event will be separated by a new line. If you need something different, feel free to use the module in a JS file.

Options

Most options that are available to the serial port are available through the command line. Use the --help option to see a full list

serialbot --help
serialbot start --help

Using in code

This module can be used directly in your JS code if desired, even though this is not really the main reason for the module. Something like the following should get your start.

var serialbot = require('serialbot');
var s = serialbot.start({
  serialPath: '/dev/cu.usbmodemXXX',
  serialPortOptions: {},
  httpPort: 8899
});
// `s` will then have the following properties
// serialPort: The serialport object
// httpServer: The http server object
// socket: The socket.io object