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

@boarteam/fix-dict-fixt11

v1.0.0

Published

FIXT.1.1 transport-layer dictionary (session envelope + admin messages) for @boarteam/fix. The session half of the transport/application split introduced by FIX 5.0; generated from the QuickFIX/J FIXT11 data dictionary.

Readme

@boarteam/fix-dict-fixt11

The FIXT.1.1 transport-layer dictionary as data (74 fields / 7 session messages / 4 components) for the @boarteam/fix engine. FIXT.1.1 is the session protocol that carries FIX 5.0+ application messages: the standard header/trailer (a strict superset of the FIX 4.4 envelope, adding ApplVerID(1128), CstmApplVerID(1129), ApplExtID(1156)), plus the session messages — Heartbeat(0), TestRequest(1), ResendRequest(2), Reject(3), SequenceReset(4), Logout(5), and Logon(A) with its required DefaultApplVerID(1137). Generated from the QuickFIX/J FIXT11.xml data dictionary — never hand-maintained.

Use it for transport-layer tooling (session-message construction and validation, layer attribution) or pair it with an application dictionary. For a batteries-included FIX 5.0 SP2 dictionary that already contains this envelope, use @boarteam/fix-dict-fix50sp2.

import { createFixEngine } from '@boarteam/fix';
import { dictionary, message, Enums } from '@boarteam/fix-dict-fixt11';

const fix = createFixEngine(dictionary);
// A typed FIXT Logon: DefaultApplVerID(1137) is REQUIRED by the LogonBody type.
const wire = message('A')
  .set('EncryptMethod', '0')
  .set('HeartBtInt', 30)
  .set('DefaultApplVerID', Enums.ApplVerID.FIX50SP2) // '9'
  .render({
    SenderCompID: 'ME',
    TargetCompID: 'YOU',
    MsgSeqNum: 1,
    SendingTime: '20260801-12:00:00',
  });

Exports: dictionary (the data; version === beginString === 'FIXT.1.1'), Tags/TagNames, MsgType/MsgTypeNames, Enums (e.g. Enums.ApplVerID, Enums.SessionRejectReason), a top-level const + same-name type per enumerated field, DICTIONARY_VERSION, and the typed message API (message, MessageBodies with the 7 admin bodies, isMessageType, MessageOf<M>).

Provenance & coverage

  • Structure: QuickFIX/J FIXT11.xml (vendored at a pinned commit; provenance and SHA-256 recorded in the generator repo). Header: 30 members including the HopGrp (NoHops) component; trailer: SignatureLength/Signature/CheckSum.
  • Descriptions: FIX Orchestra FIXTSession.xml (FIX.5.0SP2_EP247, Apache-2.0). 73/74 fields are documented; MsgType(35) enumerates the full FIX 5.0 message-type code set but only the session-layer codes carry session-layer descriptions (recorded in dictionary.coverageGaps).
  • Known limitation: XMLnonFIX(n) is deliberately not shipped: QuickFIX/J master comments it out and quickfix-go omits it entirely; only quickfix C++ ships it. Restoring it later is additive (a minor release); shipping it now and dropping it later would be breaking. Messages carrying 35=n parse flat with a parse/unknown-msgtype issue.

Requires @boarteam/fix as a peer dependency.

License

Apache-2.0 © Boar Team. See NOTICE and THIRD-PARTY-NOTICES.txt (QuickFIX Software License for the structural source; Apache-2.0 FIX Orchestra for descriptions). "FIX" is a trademark of FIX Protocol Limited; this is an independent project, not affiliated with or endorsed by it.