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

intu-dev

v1.0.14

Published

Git-native, AI-friendly healthcare interoperability framework. Build, version, and deploy integration pipelines with YAML config and TypeScript transformers.

Readme

intu

Integration as Code for Healthcare

npm version npm downloads CI License

Website · Docs · GitHub · Issues


This package installs the intu CLI — a Git-native healthcare interoperability engine. Define integration channels as YAML + TypeScript, store everything in Git, and run a production-grade pipeline with one command.

Install

npm i -g intu-dev

This downloads the prebuilt Go binary for your platform (macOS, Linux, Windows — x64 and arm64). No Go toolchain required.

Quick Start

intu init my-project
cd my-project
npm run dev

To create the project in the current directory: intu init my-project --dir .

That's it. intu init scaffolds the project and runs npm install. npm run dev starts the engine with hot-reload — edit YAML or TypeScript and channels restart automatically.

Dashboard: http://localhost:3000 (admin / admin)

Try the included channels

# JSON pass-through
curl -X POST http://localhost:8081/ingest \
  -H "Content-Type: application/json" -d '{"hello":"world"}'

# FHIR Patient → HL7 ADT
curl -X POST http://localhost:8082/fhir/r4/Patient \
  -H "Content-Type: application/json" \
  -d '{"resourceType":"Patient","id":"123","name":[{"family":"Smith","given":["John"]}]}'

Add a channel

intu c my-channel

What You Get

my-project/
├── intu.yaml              # Root config + named destinations
├── intu.dev.yaml          # Dev profile overrides
├── intu.prod.yaml         # Production profile
├── .env                   # Environment variables
├── src/
│   ├── channels/
│   │   ├── http-to-file/      # JSON pass-through channel
│   │   │   ├── channel.yaml
│   │   │   ├── transformer.ts
│   │   │   └── validator.ts
│   │   └── fhir-to-adt/       # FHIR Patient → HL7 ADT channel
│   └── types/
│       └── intu.d.ts
├── package.json
├── tsconfig.json
├── Dockerfile
└── docker-compose.yml

Each channel is a folder with channel.yaml (config) and TypeScript files (transform logic). Pure functions, fully testable, version-controlled.

npm Scripts

| Script | Description | |--------|-------------| | npm run dev | Start with hot-reload and debug logging | | npm run serve | Start with default profile | | npm start | Start in production mode | | npm run build | Compile TypeScript (CI/CD — serve auto-compiles) |

CLI Reference

| Command | Description | |---------|-------------| | intu init <name> [--dir] [--force] | Scaffold a new project; --dir . creates in current dir | | intu serve | Start the runtime engine | | intu c <name> | Add a new channel | | intu validate | Validate config and channels | | intu build | Compile TypeScript | | intu deploy [id] | Enable channel(s) | | intu undeploy <id> | Disable a channel | | intu stats [id] | Show channel statistics | | intu dashboard | Launch the web dashboard | | intu channel list\|describe\|clone\|export\|import | Channel management | | intu message list\|get\|count | Browse stored messages | | intu import mirth <file> | Import a Mirth Connect channel |

All commands accept --dir (project root) and --log-level (debug|info|warn|error).

See the full CLI docs for all flags and options.

Connectors

14 sources: HTTP, TCP/MLLP, FHIR R4, FHIR Poll, FHIR Subscription (R4b), Kafka, Database, File, SFTP, Email, DICOM, SOAP, IHE (XDS/PIX/PDQ), Channel

13 destinations: HTTP, Kafka, TCP/MLLP, File, Database, SFTP, SMTP, Channel, DICOM, JMS, FHIR R4, Direct, Log

Data types: HL7v2 · FHIR R4 · X12 · CCDA · JSON · XML · CSV · binary

Pipeline

Every message flows through up to 8 stages — each optional, each a TypeScript function:

PreprocessorValidatorSource FilterTransformerDest FilterDest TransformerResponse TransformerPostprocessor

Included Packages

Scaffolded projects ship with these healthcare data packages:

| Package | Purpose | |---------|---------| | @types/fhir | FHIR R4 TypeScript types | | node-hl7-client | HL7v2 message builder/parser with native TypeScript types |

Requirements

  • Node.js >= 18
  • Supported platforms: macOS (arm64, x64), Linux (x64, arm64), Windows (x64, arm64)

License

MPL-2.0