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

@glion/preset-lint-profile-recommended

v0.16.0

Published

hl7v2-lint preset with profile-based validation rules

Readme

@glion/preset-lint-profile-recommended

Preset bundling every profile-based HL7v2 lint rule for validating messages against their version-specific profiles.

What it does

This preset wires the eight profile lint rules plus the annotate-profile-context loader into a single unified plugin. One .use(...) call enables required-field, field-length, field-repetition, required-component, table-value, extra-field, extra-component, and segment-order validation — all driven by the HL7v2 profile loaded for the message's MSH-12 version.

Install

npm install @glion/preset-lint-profile-recommended

Use

import hl7v2PresetLintProfileRecommended from "@glion/preset-lint-profile-recommended";
import { hl7v2Parser } from "@glion/parser";
import { unified } from "unified";

const processor = unified()
  .use(hl7v2Parser)
  .use(hl7v2PresetLintProfileRecommended);

const file = await processor.process(
  "MSH|^~\\&|SENDER||RECEIVER||20250601120000||ADT^A01|MSG00001|P|2.5\rPID|1||PATID1234^^^HOSP^MR"
);

for (const message of file.messages) {
  console.log(`${message.ruleId}: ${message.reason}`);
}

API

unified().use(hl7v2PresetLintProfileRecommended)

Default export is a Preset (unified's { plugins: [...] } shape). No options — to configure individual rules, compose them directly from their own packages instead of using the preset.

What's bundled

The preset applies these plugins in order. annotate-profile-context runs first so every subsequent rule sees the resolved profile on file.data.profile.

| Plugin | Purpose | | ------------------------------------------------------------------------------------ | ------------------------------------------------------------------------ | | @glion/annotate-profile-context | Loads the HL7v2 profile for the message version onto file.data. | | @glion/lint-profile-required-fields | Flags missing or empty required fields. | | @glion/lint-profile-field-max-length | Enforces field-value maxLength from the profile. | | @glion/lint-profile-field-repetition | Flags non-repeatable fields that contain multiple repetitions. | | @glion/lint-profile-required-components | Validates required components inside composite datatypes. | | @glion/lint-profile-table-values | Validates coded values against HL7 tables. | | @glion/lint-profile-events-segments-order | Validates segment order per the message structure definition. | | @glion/lint-profile-extra-fields | Warns when a segment contains more fields than the profile defines. | | @glion/lint-profile-extra-components | Warns when a composite field contains more components than its datatype. |

The companion @glion/preset-lint-recommended covers the core (version-independent) lint rules; use both together for comprehensive validation.

Part of Glion

@glion/preset-lint-profile-recommended is part of Glion, the application framework for HL7v2. See the Glion README for the full package catalog and architecture.