TezzNative Documentation

v1.0.0 · Full onboarding and SDK reference

Documentation Hub

Everything needed to install, validate, and ship TezzNative v1.0.0 projects.

Start in 3 Commands

tezz doctor
tezz update --check
tezz run hello.tn
tezz build app.tn --platform linux

Install

Linux/macOS:
curl -fsSL "https://tn.tezzcorp.com/download/install.sh?nocache=$(date +%s)" | bash

Windows CMD:
curl -fsSL -o install.cmd "https://tn.tezzcorp.com/download/install.cmd?nocache=%RANDOM%%RANDOM%" && install.cmd

Windows PowerShell:
iwr "https://tn.tezzcorp.com/download/install.ps1?nocache=$([DateTimeOffset]::UtcNow.ToUnixTimeMilliseconds())" -OutFile install.ps1
powershell -ExecutionPolicy Bypass -File .\install.ps1

Windows default scope: user install at %USERPROFILE%\TezzNative
Optional machine scope:
set TEZZ_INSTALL_SCOPE=machine
install.cmd install

CLI Commands

tezz run file.tn [--platform linux|windows|tezzos|macos|android|native]
tezz build file.tn --platform linux|windows|tezzos|macos|android
tezz doctor
tezz update --check
tezz test --smoke
tezz test
tezz bench
tezz lock / tezz verify / tezz release

Platform Mapping

linux   -> target linux
windows -> target x86_64
macos   -> target macos
android -> target linux-arm64
tezzos  -> freestanding asm output (build/<name>_tezzos.s)

Project Layout

hello.tn        # your source
tezz.mod        # project metadata
.tezz/cache/    # compiler/package cache
build/          # generated outputs

SDK Coverage

Modules: 45
Functions indexed: 1740
Open full function list: /docs/sdk

Backend + TezzDB

Backend architecture: /docs/backend
TezzDB integration: /docs/tezzdb
Language guide: /docs/language
Examples cookbook: /docs/examples

Includes API contracts, request flow, database model, and production deployment notes.

TezzApi + TNXB

Module: import "tezzapi"
Purpose: route-table CRUD APIs + binary TNXB transport (.tnxb)

Core:
- api_new / api_route / api_crud / api_serve_or_404
- tnxb_encode / tnxb_decode / tnxb_send / tnxb_recv

Start from examples:
/docs/examples

v1.0.0 Feature Audit

[READY] CLI run/build workflow
  - Single-command entry points for run/build.
[READY] Environment diagnostics
  - Checks PATH, compiler, SDK core, and project files.
[READY] Smoke testing path
  - Fast CI/dev sanity tests.
[READY] Cross-platform build targets
  - Linux, Windows, macOS, Android, and TezzOS outputs.
[READY] Module lock and verification
  - Dependency lock and integrity verification commands.
[READY] Core std/io/net/math libraries
  - Essential SDK modules packaged in v1.0.0.