clearkrypt
v0.14.1
Published
ClearKrypt cross-platform programming language compiler, VM, website, docs, sandbox, course, and exporters
Maintainers
Readme
ClearKrypt
ClearKrypt is a cross-platform programming language for building visual apps, web apps, phone shells, PC shells, workers, and documentation-friendly app definitions from one .ck source file.
Install
npm install -g clearkrypt
ck --helpFirst app
app "Hello ClearKrypt"
use ui
use data
screen Home {
layout Stack
theme "Aurora"
title "Hello ClearKrypt"
text "This app compiles to web, phone, PC, worker, C#, and Swift targets."
button "Say hello" {
say "Hello from ClearKrypt"
}
}Build
ck build app.ck --target web --out dist/web
ck build app.ck --target csharp --out dist/csharp
ck build app.ck --target swift --out dist/swift
ck build-all app.ck --out distWebsite
ck site --out site-export
npx wrangler pages deploy site --project-name clearkryptDocs: https://docs.clearkey.solutions/clearkrypt Sandbox: https://clearkrypt.clearkey.solutions/sandbox
