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

rusty-things

v0.1.0

Published

Node Wrapper around rusty-things

Readme

MMM-rusty-things

MagicMirror module to access your todo-entries from Things and display them in MM. It was a learning project for me where I learnt about how to interact between Rust and Node.

Screenshot

The module looks like this:

Example of MMM-rusty-things publishing todos

Installation

git clone https://github.com/piceaTech/MMM-rusty-things.git
cd MMM-rusty-things.git
npm install
mv example.env .env

Edit the .env and insert your hist_id.

After that either compile the native module locally on the pi or cross-compile from your desktop.

No cross-compilation

In the folder rust-things execute: neon build --release

(This runs for approximately 30 minutes.)

Cross-compilation (e.g. from x64 to arm)

  1. Build the build-Container
  2. git clone https://github.com/piceaTech/rust-on-raspberry-docker
  3. cd rust-on-raspberry-docker
  4. git checkout neon
  5. If you need another node version than the current LTS-Version: Edit the Dockerfile and switch to correct BaseImage.
  6. docker build --tag "neon-pi-cross:latest" .
  7. Copy the following dependencies as .debs into native/pi_deps
  8. ssl: http://ftp.debian.org/debian/pool/main/o/openssl1.0/libssl1.0-dev_1.0.2r-1~deb9u1_armhf.deb
  9. sqlite: http://ftp.debian.org/debian/pool/main/s/sqlite3/libsqlite3-dev_3.16.2-5+deb9u1_armhf.deb
  10. Inside your neon-folder run native/build.sh. This should create a native/index.node which should be compatible with arm.
  • Currently there is an error in neon-serde which requires that the following patch be applied manually inside https://github.com/GabrielCastro/neon-serde/pull/29 inside your ~/.cargo/registry
  • Currently neon does not support cross-compilation. it requires you add the following patch in the node_modules folder youreself: https://github.com/neon-bindings/neon/pull/411
    • Best insert it into the js code in the lib folder and not the Typescript code as then you would need to recompile the code
  1. Deploy this artifact to the pi!
  2. Done