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

aidc-barcode-toolkit

v1.0.0

Published

Professional AIDC barcode/QR generation, GS1 validation & thermal printing for AI coding assistants

Readme

🏷️ AIDC Barcode Toolkit for Claude Code

GitHub stars GitHub forks GitHub watchers License GitHub last commit

Professional barcode generation, GS1 validation & thermal printing. Built by enterprise AIDC experts.

LinkedIn Website Email

⚡ Quick Install

/plugin marketplace add rmjoe99/aidc-barcode-toolkit
/plugin install aidc-barcode-toolkit

✨ Features

  • Barcode Generation: EAN-13, UPC-A, Code 128, Code 39, ITF-14, QR Codes
  • GS1 Validation: GTIN check digits, Application Identifier parsing
  • Thermal Printing: Zebra ZPL, ESC/POS, TSPL support
  • Natural Language: Just ask - no complex commands
  • Enterprise Grade: Tested with Honeywell, Zebra, Datalogic hardware

🎯 Perfect For

  • 🏭 Warehouse Automation - Location labels, inventory tracking
  • 🛒 Retail & E-Commerce - Product labeling, price tags
  • 💊 Healthcare - Medication tracking (FDA, EU FMD compliant)
  • 📦 Logistics - Shipping labels, container codes
  • 🏭 Manufacturing - Asset management, serial numbers

🚀 Usage Examples

Generate Barcode

/generate-barcode --data "012345678905" --format EAN13

Generate QR Code

/generate-qr --data "https://example.com/product/123" --ecc H

Validate GTIN

/validate-barcode --code "012345678905"

Natural Language (Auto-detection)

You: "Generate barcodes for products SKU001, SKU002, SKU003"
Claude: ✅ Generated 3 Code 128 barcodes in ./barcodes/

💻 Programmatic Usage

const barcode = require('aidc-barcode-toolkit');

// Generate EAN-13 barcode
const result = await barcode.generateBarcode('012345678905', {
  format: 'EAN13',
  output: './product-barcode.png'
});

// Validate GTIN with check digit
const validation = barcode.validateGTIN('012345678905');
console.log(validation.valid); // true

// Parse GS1 Application Identifiers
const parsed = barcode.parseGS1('010978013409341317250510AB123');
console.log(parsed.parsed['GTIN']); // 09780134093413
console.log(parsed.parsed['Expiry Date']); // May 10, 2025

📚 Documentation

🏆 Why Choose AIDC Toolkit?

Built by AIDC Experts

  • ✅ 5+ years enterprise AIDC experience
  • ✅ 50+ client deployments (warehouse, healthcare, manufacturing)
  • ✅ Honeywell Partner of the Year recognition
  • ✅ Zebra RFID Product Certification
  • ✅ Featured in Floriculture Magazine for innovation

Production-Tested

  • ✅ Validated with Honeywell, Zebra, Datalogic scanners
  • ✅ Thermal printer compatibility (ZPL, ESC/POS, TSPL)
  • ✅ GS1 standards compliant
  • ✅ FDA, EU FMD, DSCSA ready

Developer-Friendly

  • ✅ Natural language interface
  • ✅ Comprehensive error handling
  • ✅ Detailed documentation
  • ✅ Active community support

🎓 Real-World Use Cases

E-Commerce Product Labeling

// Generate EAN-13 for product catalog
const products = ['5901234567890', '5901234567891', '5901234567892'];

for (const gtin of products) {
  await barcode.generateBarcode(gtin, {
    format: 'EAN13',
    output: `./labels/${gtin}.png`
  });
}

Warehouse Location Barcodes

// Create location labels for warehouse sections
const aisles = ['A', 'B', 'C'];
const shelves = 10;

for (const aisle of aisles) {
  for (let shelf = 1; shelf <= shelves; shelf++) {
    const location = `${aisle}${shelf}`;
    await barcode.generateBarcode(location, {
      format: 'CODE39',
      output: `./warehouse/${location}.png`
    });
  }
}

Healthcare GS1 Serialization

// Parse pharmaceutical GS1 barcode
const gs1Data = '010978013409341317250510SN12345';
const parsed = barcode.parseGS1(gs1Data);

console.log('GTIN:', parsed.parsed['GTIN'].value);
console.log('Expiry:', parsed.parsed['Expiry Date'].formatted.readable);
console.log('Serial:', parsed.parsed['Serial Number'].value);

Built by Joseph Rwanda, Technical Solutions Architect at Origami Tech with:

  • 5+ years enterprise AIDC expertise
  • 50+ client deployments (warehouse, healthcare, manufacturing)
  • Honeywell Partner of the Year recognition
  • Zebra RFID Product Certification
  • Featured in Floriculture Magazine for innovation

🤝 Contributing

Contributions welcome! See CONTRIBUTING.md

📄 License

MIT License - see LICENSE file for details

📞 Contact & Support

🙏 Acknowledgments

Built with:

  • jsbarcode - 1D barcode generation
  • node-qrcode - QR code generation
  • bwip-js - Advanced barcode formats
  • Tested with Honeywell, Zebra, Datalogic hardware

⭐ Star History

If this plugin helps your workflow, please ⭐ star the repo!

Star History Chart


Made with ❤️ by Joseph Rwanda | Origami Tech
Bringing enterprise AIDC expertise to Claude Code


🚀 Quick Links