Skip to content
View yakmesh's full-sized avatar
🦬
Work In Progress | Room For Improvement | All Glory to God!
🦬
Work In Progress | Room For Improvement | All Glory to God!

Block or report yakmesh

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Maximum 250 characters. Please don't include any personal information such as legal names or email addresses. Markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
yakmesh/README.md
YAKMESH

🏔️ YAKMESH™: Sturdy & Secure

Yielding Atomic Kernel Modular Encryption Secured Hub

License: MIT Node.js Post-Quantum npm version


YAKMESH is a high-resiliency, decentralized networking layer designed for the 2026 threat landscape. Built with quantum-resistant cryptography at its core and anchored by PCIe atomic timing synchronization, YAKMESH provides a "sturdy" substrate for distributed systems that cannot afford to fail.

📚 Full documentation: yakmesh.dev | docs/ for specifications

Quick Start

npm install yakmesh
import { YakmeshNode } from 'yakmesh';

const node = new YakmeshNode({
  node: { name: 'My Node' },
  network: { httpPort: 3000, wsPort: 9001 },
});

await node.start();

Features

  • 🔒 Post-Quantum Secure - ML-DSA-65 (NIST FIPS 204) signatures
  • 🔮 TATTVA Oracle - Self-verifying validation without external trust
  • 🌐 Mesh Networking - P2P WebSocket communication with gossip protocol
  • ⏱️ Precision Timing - Support for atomic clocks, GPS, PTP, NTP
  • 🧭 NAMCHE Gateway - 7-gate mathematical identity verification
  • 🏔️ SHERPA Discovery - Decentralized peer discovery
  • 🔐 ANNEX Channels - ML-KEM768 encrypted P2P with forward secrecy
  • 🌍 Geographic Proof - Speed-of-light exclusion zones

See yakmesh.dev for complete feature documentation

Architecture

yakmesh/
├── security/         # NAMCHE gateway, DOKO identity, trust models
├── oracle/           # TATTVA self-verifying validation engine
├── mesh/             # SHERPA, NAKPAK, ANNEX networking
├── gossip/           # Epidemic-style message propagation
├── protocol/         # STUPA, LAMA, MANI, KARMA, MANDALA
├── adapters/         # Platform integration plugins
├── embedded-docs/    # GRANTH documentation bundle
└── server/           # HTTP/WS server

Network Identity

Each YAKMESH network has a unique identity derived from the oracle's code hash — the code IS the identity.

import { deriveNetworkName, deriveVerificationPhrase } from 'yakmesh/oracle/network-identity.js';

// Same code = same network. Different code = different network.
// No configuration needed - the math handles network separation.

API Reference

Full API documentation at yakmesh.dev/docs/api

Endpoint Description
/health Node health status
/node Node identity info
/peers Connected peers
/oracle/status Oracle integrity check
/network/identity Network identity
/time/status Time source detection
/security/namche/gates Gateway verification status
/geo/status Geographic proof status

License

  • Community Edition: MIT License (see LICENSE)
  • Pro Edition: Proprietary License

See TRADEMARK.md for trademark usage policy.


Built with quantum principles. Secured by math.

yakmesh.dev

💬 Discord📱 Telegram𝕏 Twitter❤️ Patreon


© 2026 YAKMESH™ Project. Sturdy & Secure.
YAKMESH™ is a trademark of PeerQuanta, application pending (Serial No. 99594620).

Popular repositories Loading

  1. yakmesh yakmesh Public

    YAKMESH™: Yielding Atomic Kernel Modular Encryption Secured Hub - Post-quantum secure P2P mesh network

    JavaScript