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

@seedtactics/insight-client

v16.4.7

Published

This is the client half of [FMS Insight](https://github.com/SeedTactics/fms-insight). FMS Insight is a program for a flexible machining system (FMS) cell controller which tracks material, records a log of events, helps with inspections and serial marking,

Downloads

572

Readme

FMS Insight Client

This is the client half of FMS Insight. FMS Insight is a program for a flexible machining system (FMS) cell controller which tracks material, records a log of events, helps with inspections and serial marking, presents details about the cell via webpages, and more. These web pages help operators on the shop floor manage material, supervisors monitor the day to day activities, and engineers evaluate the long-term efficiency of tools and the cell.

The server is written in C# and available on nuget in the BlackMaple.MachineFramework package. The client in this npm package is a React SPA which communicates with the server with HTTP JSON requests. The client is built using vite and served as static files, typically by the C# server. Because of that, the nuget package for the server contain a built version of the client. If you are just using FMS Insight and don't intend any changes to the client, you can just use the BlackMaple.MachineFramework nuget. This npm package is needed only if you wish to modify the client or import portions of the client into your own pages.

Code Overview

The client stores data in jotai stores. We use a thick-client approach: each client loads a large amout of events at startup and then uses a websocket connection to keep the stores updated as new events occur. Most of the reports and pages are then generated on the client, typically using jotai atoms. The atoms storing the information about the cell are in the src/cell-status directory. The code in the src/network directory handles the initial data load and the websocket connection to keep the jotai stores updated.

The src/data directory contains a large amout of the client-side business logic and report generating typescript code. It takes the raw event data from the cell status and turns it into a format suitable for display. Finally, the src/components directory contains the React components which display the various reports and pages. To customize, you should look at src/components/App.tsx for inspiration: it imports the various pages and handles the routing.