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

turkish-food-safety-data

v1.0.0

Published

Turkish food safety reference data: ISO 22000 / HACCP glossary, framework structure, food allergen reference (Codex / EU 1169/2011), and a food-safety Q&A set. Sources cited; standard text not reproduced. CC BY 4.0.

Readme

turkish-food-safety-data

Turkish-first food safety reference data as an installable package: an ISO 22000 / HACCP glossary, the HACCP & ISO 22000 framework structure, a food allergen reference (Codex / EU 1169/2011), and a food-safety Q&A set. Built for NLP, education, RAG and food-safety tooling.

Published by Dokumantum — https://dokumantum.com/sektorler/gida License: CC BY 4.0 (attribution required — credit "Dokumantum, dokumantum.com").

Install

npm install turkish-food-safety-data

Usage

const fs = require('turkish-food-safety-data');

fs.glossary;                 // 30 ISO 22000 / HACCP terms (TR + EN)
fs.haccpIso22000Structure;   // HACCP 7 principles + 12 steps + ISO 22000 clauses 4-10
fs.allergens;                // 14 allergens (Codex / EU 1169/2011)
fs.faq;                      // Turkish food-safety questions and answers

fs.findTerm('CCP');                 // -> glossary entry
fs.findAllergen('süt');             // -> allergen entry
fs.searchFaq('belge');              // -> matching Q&A entries

ESM:

import { glossary, allergens, findTerm } from 'turkish-food-safety-data';

Data shape

  • glossary[]term_tr, term_en, definition_tr, category, related_standard, source_url
  • haccpIso22000Structure[]item_type, code, title_tr, description_tr, source, source_url
  • allergens[]allergen_tr, allergen_en, list_basis, common_sources_tr, source_url
  • faq[]question_tr, answer_tr, topic, source_url

Sources

Definitions are original Turkish text by Dokumantum, paraphrasing publicly established food-safety concepts. The data references standards/regulations by name only and does not reproduce any copyrighted standard text.

  • Codex Alimentarius CXC 1-1969 (HACCP 7 principles, 12 steps, allergen management)
  • Regulation (EU) No 1169/2011, Annex II (allergen list); reflected in Türk Gıda Kodeksi
  • ISO 22000:2018 and FSSC 22000 referenced by name/clause number only

Also available as open datasets: Hugging Face · Kaggle

Disclaimer

This package is an educational/reference resource and does not replace official standards or regulations. For certification or legal compliance, consult the official ISO/Codex texts and applicable national regulation (e.g. Türk Gıda Kodeksi). Allergen lists and thresholds differ by country and change over time; verify against current local regulation.