tezz

Build Backends. Blazing Fast.

The first language with zero configuration, lightning fast compilation, and native Hinglish support.

npm install -g tezz-lang

âš¡ Zero Configuration

No Webpack, Babel, or TSConfig. Write your code and let Tezz instantly compile it to raw JavaScript in under 300ms.

🇮🇳 Native Hinglish

Write your backend using words like rakho, kaam, and rasta. Tezz translates it directly at the AST level with zero penalty.

🚀 Built for the Edge

Use simple service and route blocks to build APIs. Compile to Node.js or deploy instantly to Cloudflare Workers.

Beautifully Simple APIs

No boilerplate. Just logic.

api.tezz
service UsersAPI on 3000 {
  
  route GET "/users/:id" {
    rakho user = db.find(params.id)
    
    agar user {
      respond 200 { success: true, data: user }
    } warna {
      respond 404 { success: false, error: "Not found" }
    }
  }

}