/// low code. no code. infinite possibilities.
Revolutionary interoperable low/no-code generator for metaverses, games, apps, and platforms. Write once, deploy everywhere with OAPPs, SDKs, and Web Kits.
Build entire metaverses, games, and dApps with minimal coding. OAPPs (OASIS Applications) enable write-once, deploy-everywhere development. SDKs and Web Kits provide framework-specific integrations for Angular, React, Vue, Unity, Unreal, and more.
Low/no-code generator for creating OAPPs, NFTs, Quests, and more. Template system, version control, and STARNET integration for publishing and distribution.
Write once, deploy everywhere applications. OASIS Applications work across all platforms with dependency linking and version control built-in.
Framework-specific integrations for Angular, React, Vue, Next.js, Unity, Unreal, Python, Rust, Java, PHP, Go, and .NET. Use your preferred stack.
Asset and app store backend for publishing and distributing digital assets. Version control, dependency management, and template sharing.
Create entire metaverses with minimal coding. STAR CLI generates OAPPs, Quests, NFTs, and virtual worlds with drag-and-drop simplicity.
Build games with Unity and Unreal SDKs. OAPPs enable cross-platform gameplay with shared assets, quests, and inventory systems.
Rapid prototyping with React, Vue, and Angular Web Kits. OAPPs deploy to all platforms with automatic provider abstraction.
Create OAPPs, manage STARNETHolons, link dependencies, and publish to STARNET. Low/no-code development with full version control and template system.
# Create new OAPP
star create oapp "My Metaverse" \
--description "A sample metaverse" \
--template "metaverse-basic"
# STAR CLI creates:
# - OAPP structure
# - DNA file with dependencies
# - Basic configuration
# - Template files
# Result: Ready-to-deploy OAPP
# Works on all platforms automatically
# Create Quest from template
star create quest "Tutorial Quest" \
--template "quest-basic" \
--description "Learn the basics"
# Create NFT from template
star create nft "Character NFT" \
--template "nft-character" \
--metadata "{...}"
# Link dependencies
star add-dependency oapp "My Metaverse" \
quest "Tutorial Quest"
# All linked automatically
# Publish OAPP to STARNET
star publish oapp "My Metaverse" \
--version "1.0.0" \
--description "My first metaverse"
# Publish NFT collection
star publish nft "Character Collection" \
--version "1.0.0"
# Download published OAPP
star download oapp "My Metaverse" \
--version "1.0.0"
# STARNET handles:
# - Version control
# - Dependency resolution
# - Distribution
# - Updates