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 🙏

© 2026 – Pkg Stats / Ryan Hefner

jaculus-tools

v0.0.30

Published

Companion CLI application for Jaculus

Downloads

28

Readme

Jaculus-tools - Companion application/library for Jaculus

Jaculus tools allow for uploading and downloading files, as well as controlling the running Jaculus runtime on the device.

Setup

First, install node.js and npm. Then, install jaculus-tools with:

npm install -g jaculus-tools

Then, you can run the tools using:

jac

or

npx jac

Usage

To see the list of available commands, use:

jac help

To see help for a specific command, use:

jac help <command>

To connect to the device using serial port, the correct driver must be installed - most likely CP210x USB to UART Bridge.

Installing Jaculus firmware to the device

First, the Jaculus runtime must be installed on the device.

The runtime can be installed using the following command:

jac install --package <package.tar.gz> --port <port>

The command will download the selected package and install it on the device (packages can be found on the downloads page). The package info can be viewed using the --info flag.

Verify that the runtime is installed correctly by running:

jac version

Connecting to the device

All commands interacting with the device require specifying the device connection using either --port or --socket option.

To connect to the device using serial port, use:

jac --port <port> <command>

To connect to the device using TCP socket, use:

jac --socket <host>:<port> <command>

To list available serial ports, use:

jac list-ports

To tunnel serial port over TCP, use:

jac serial-socket --port <port> --socket <port>

Creating and running TypeScript programs

Create a new TypeScript project. A template project for ESP32 with examples is available on GitHub.

Compile the project to JavaScript:

jac build

The output will be written to the build directory.

Flash the JavaScript program to the device:

jac flash

After flashing, the program will be immediately executed on the device.

The entry point of the program is the index.ts file at the root of the project.

Creating and running JavaScript programs

Create a directory for your source files.

Flash the JavaScript program to the device (<path> should point to the source directory):

jac flash --from <path>

After flashing, the program will be immediately executed on the device.

The entry point of the program is the index.js file in the source directory.

Controlling the device and monitoring its output

To control the device, use the following commands:

jac start <path>
jac stop
jac status
jac monitor

Updating the firmware

To update the firmware, just install the new runtime package using the install command.

Note that this will erase all data stored on the device. It may be also necessary to update the type definitions for the runtime. They can be found in the example project on GitHub.

License

Everything in this repository, unless otherwise noted, is licensed under the GNU General Public License, version 3.0.