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

@ediflow/edifact-d01b

v0.2.1

Published

EDIFACT D.01B (2001) Standard Definitions - 4 Message Types

Readme

@ediflow/edifact-d01b

EDIFACT D.01B (2001) Standard Definitions

NPM Version License: MIT Package Size

EDIFACT D.01B4 Message TypesMIT LicensedFree


📦 What is this?

This package contains EDIFACT D.01B (2001) standard definitions for use with @ediflow/core.

Includes:

  • Message structures (4 message types)
  • Segment definitions
  • Element definitions
  • Composite definitions
  • Code lists

Version: D.01B (2001) - Intermediate EDIFACT standard


🚀 Installation

# Install core library (required)
npm install @ediflow/core

# Install this standard package
npm install @ediflow/edifact-d01b

📊 Supported Message Types (4)

| Message Type | Description | Use Case | |--------------|-------------|----------| | IFCSUM | Forwarding & Consolidation Summary | Freight forwarding | | IFTMIN | Forwarding & Transport Message | Transport instructions | | IFTSTA | Transport Status Message | Shipment tracking | | INVOIC | Invoice | Billing documents |


📖 Usage Example

import { DIContainer } from '@ediflow/core';

const container = DIContainer.getInstance();
const parseUseCase = container.resolve('ParseEDIUseCase');
const validateUseCase = container.resolve('ValidateMessageUseCase');

// Parse EDIFACT message
const parsed = parseUseCase.execute({
  message: edifactString,
  standard: 'EDIFACT'
});

// Validate against D.01B structure
const validation = validateUseCase.execute({
  message: parsed.message,
  messageType: 'IFTMIN',
  version: 'D01B',
  repositoryPath: './node_modules/@ediflow/edifact-d01b/data'
});

if (validation.success) {
  console.log('✅ Valid D.01B IFTMIN message!');
}

📁 Package Contents

@ediflow/edifact-d01b/
└── data/
    ├── codes/               # Code lists
    ├── composites.json      # Composite elements
    ├── elements.json        # Data elements
    ├── messages/            # Message structures (4 types)
    │   ├── IFCSUM.json
    │   ├── IFTMIN.json
    │   ├── IFTSTA.json
    │   └── INVOIC.json
    └── segments.json        # Segment definitions

Package Size: ~0.36 MB


🎯 When to Use D.01B

Use D.01B if:

  • ✅ Trading partner requires D.01B specifically
  • ✅ Legacy system integration (2001-2010 era)
  • ✅ Transportation & logistics focus
  • ✅ Freight forwarding industry

Consider other versions if:

  • 🔄 D.20B - Latest standard (2020) - More message types
  • 🔄 D.12A - Comprehensive (196 message types)
  • 🔄 D.96A - Older standard (1996) - 7 message types

📦 Related Packages

Core:

Other EDIFACT Standards:


📚 Documentation


🤝 Contributing

Data corrections or additional message types? We welcome contributions!


📄 License

MIT License - see LICENSE


🔗 Links


Made with ❤️ for the EDI community