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

@trippnology/js8-cli

v1.2.5

Published

Use JS8Call's JSON API via the cli

Downloads

35

Readme

js8-cli

Use JS8Call's JSON API via the command line.

This program is essentially just a cli wrapper for lib-js8call.

Installation

Make sure you have a recent version of NodeJS installed.

npm install -g @trippnology/js8-cli

Usage

Usage: js8-cli [options] [command]

Options:
  -v, --vers                             Output the current version
  -h, --host <hostname/IP address>       Hostname or IP address of machine running JS8Call (default: "127.0.0.1")
  -p, --port <port number>               Port used by JS8 host machine (default: "2442")
  --help                                 Display help for command

Commands:
  inbox.get_messages                     View a list of your inbox messages
  inbox.store_message <callsign> <text>  Store a message in your inbox for later transmission
  mode.get_speed                         The current TX speed. 0 = normal, 1 = fast, 2 = turbo, 4 = slow
  rig.get_freq                           The current station frequency
  rig.set_freq <offset> [frequency]      Change the offset and/or frequency
  rx.get_band_activity                   Gets the text in the band activity window
  rx.get_call_activity                   Gets the text in the call activity window
  rx.get_text                            Gets the text in the QSO window
  tx.send_message <text>                 Transmit a message
  tx.set_text <text>                     Set the text in the TX window
  help [command]                         Display help for command

More commands coming soon, as they are added to lib-js8call.

Providing dynamic input

You can provide dynamic input to commands in a couple of different ways.

Stdin

echo -n "hello, world!" | js8-cli tx.send_message
# -n option omits the newline at the end
cat some-file.txt | js8-cli tx.send_message

Command expansion

This method allows more control over the final output.

js8-cli tx.send_message "$(some-command)"

Posting a report to the WX group, using data from the local disk:

js8-cli tx.send_message "@WX Report from JO02mm: $(cat ~/weather-station/conditions.txt)"
# Outputs:
# @WX Report from JO02mm: 10.5c 93% 1012mb

The same method can be used for other types of telemetry (such as battery level), data from web APIs, or whatever else you come up with. Remember to put quotes around anything that may contain spaces.

Contributing

  1. Fork it!
  2. Create your feature branch: git checkout -b my-new-feature develop
  3. Commit your changes: git commit -am 'Add some feature'
  4. Push to the branch: git push origin my-new-feature
  5. Submit a pull request :D

History

  • v1.2.1 --ip option is now -h or --host
  • v1.2.0 Add rx commands: rx.get_band_activity, rx.get_call_activity, and rx.get_text
  • v1.1.0 Add options for IP (-i or --ip) and port number (-p or --port)
  • v1.0.0

Credits

TODO: Write credits

License

UNLICENSED