惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
V
V2EX
WordPress大学
WordPress大学
U
Unit 42
I
InfoQ
A
About on SuperTechFans
宝玉的分享
宝玉的分享
J
Java Code Geeks
博客园 - 司徒正美
爱范儿
爱范儿
Engineering at Meta
Engineering at Meta
G
Google Developers Blog
人人都是产品经理
人人都是产品经理
小众软件
小众软件
Microsoft Security Blog
Microsoft Security Blog
L
LangChain Blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Hugging Face - Blog
Hugging Face - Blog
H
Hackread – Cybersecurity News, Data Breaches, AI and More
aimingoo的专栏
aimingoo的专栏
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Last Week in AI
Last Week in AI
腾讯CDC
Recent Announcements
Recent Announcements

Hacker News: Show HN

PurrrrrFocus: Pomodoro Timer App - App Store Workflow Engine — Multi-Step Orchestration for Bun RapidPhoto: Pro Photo Editor App - App Store GitHub - DheerG/swarms: Achieve extraordinary results with claude code across a variety of tasks SPICE simulation → oscilloscope → verification with Claude Code — Lucas Gerads Show HN: VCoding – A 5 MB native Windows IDE with no dynamic dependencies Show HN: LLMs don't hallucinate because they're bad at math, it's the format GitHub - Agent-FM/agentfm-core: AgentFM is a peer-to-peer network that turns everyday computers into a decentralized AI supercomputer. AgentFM lets you run massive AI workloads directly across a global mesh of idle CPUs and GPUs. Show HN: Tracking Top US Science Olympiad Alumni over Last 25 Years GitHub - Potarix/agent-hub: One place to talk to all your agents Show HN: Runtime security for AI agents(injection,tool abuse, data exfiltration) GitHub - dubeyKartikay/lazyspotify: Terminal Spotify client for macOS and Linux GitHub - the-banana-tool/king-louie: Easy to use GUI Personal AI Assistant. Win/Linux/Mac. Show HN I made my vacation rental bookable by AI agents–no Airbnb, 0% commission GitHub - basteez/jsf-autoreload: maven plugin to enable hot reload on jsf projects uvm32/hosts/host-gdbstub at main · ringtailsoftware/uvm32 GitHub - labsai/EDDI: Config-driven engine that turns JSON into production-grade AI agents. Multi-agent orchestration, 12+ LLM providers, MCP/A2A protocols, RAG, persistent memory, and enterprise compliance (EU AI Act, GDPR, HIPAA). Built on Quarkus. GitHub - glitchnsec/fortyone-oss: AI Executive Assistant Platform Quickstart | Alien GitHub - muxshed/shed: One stream in, or many. Every destination, simultaneously. No cloud middleman, no per-channel fees, no limits. GitHub - ocrbase-hq/ocrbase: 📄 PDF/IMG ->.MD/JSON Document OCR API for PaddleOCR and GLMOCR. Self-hostable. GitHub - impactjo/home-memory: MCP server that lets your AI assistant remember everything about your home. GitHub - Sets88/dbcls: DbCls is a powerful terminal database client that supports various databases GitHub - neptun2000/heor-agent-mcp GitHub - SeanFDZ/macmind: Single-layer transformer in HyperTalk for the classic Macintosh RollQuation: Math Puzzles - Apps on Google Play GitHub - dropbox/witchcraft Show HN: Agent-cache – Multi-tier LLM/tool/session caching for Valkey and Redis GitHub - opentalon/opentalon: OpenTalon is an open-source platform built from the ground up in Go as a robust alternative to OpenClaw LinkedIn™ 职位抓取工具 - Chrome 应用商店
GitHub - odest/tntstack: The solid stack for building cro...
odest · 2026-04-26 · via Hacker News: Show HN

TNTStack is a starting point for building cross-platform apps. It covers Web, Desktop (Windows, macOS, Linux), and Mobile (Android, iOS) from the same shared UI, themes, and logic. Run the CLI, scaffold your project, and start building.

💡 Philosophy

  • Unified - One codebase, every platform. Web and native share the same pages, components, and state through packages/core and packages/ui.
  • Ready - 40+ themes, 10 languages, CI/CD, and a scaffolding CLI out of the box.
  • Portable - Run npm create @tntstack/app, brand your project, and own the code. No lock-in.
  • Strict - End-to-end TypeScript, shared lint rules, and automated releases keep things solid.

✨ Features

  • Cross-Platform - Single codebase deploys to web, desktop, and mobile
  • Shared Architecture - Design system primitives in packages/ui, business logic and pages in packages/core
  • 40+ Themes - Light and dark variants of 40+ color schemes, plus custom theming support
  • 10 Languages - Type-safe i18n works with both SSR (web) and static export (native)
  • PWA - Offline support, precaching, and runtime caching strategies for the web app
  • Landing Page - Pre-built, SEO-optimized marketing pages designed to pitch your product
  • Docs Page - Integrated, MDX-powered documentation architecture ready for your technical guides
  • Scaffolding CLI - npm create @tntstack/app sets up a branded, configured project
  • Turborepo - Dependency-aware builds and caching
  • TypeScript - Strict, end-to-end type safety with shared configs
  • CI/CD - GitHub Actions + Release Please for automated builds and versioning

🚀 Quick Start

Prerequisites

  • Node.js v20 or higher
  • pnpm v8 or higher
  • Rust (latest stable, needed for native builds)

Note

Building native apps requires additional platform-specific tools (e.g., Xcode, Android Studio, C++ Build Tools). See our Docs or Tauri's Prerequisites Guide for details.

Create a New Project

npm create @tntstack/app@latest
Using other package managers
pnpm create @tntstack/app@latest
yarn create @tntstack/app
npx @tntstack/create-app
bunx @tntstack/create-app

The CLI configures your project name, identifiers, and versions. It can also initialize git and install dependencies for you.

Start Developing

cd <your-project-name>

# Run this only if you skipped dependency installation during scaffolding
pnpm install

pnpm dev

This starts both the web app (http://localhost:3000) and the native desktop app in parallel.

Important

GitHub Actions & Release Please: For the automated release pipelines and changelog generation to function properly, you must configure the following repository settings:

  1. Workflow Permissions (Settings > Actions > General): Grant Read and write permissions and check Allow GitHub Actions to create and approve pull requests.
  2. Pull Request Merging (Settings > General): To maintain the required linear git history for the release bot, uncheck Allow merge commits and Allow rebase merging. Leave only Allow squash merging checked, and set the default commit message to Pull request title.

📦 Overview

Monorepo Structure

apps/
  web/                → Next.js SSR — web app, landing page, docs, PWA
  native/             → Next.js (Static) + Tauri 2 — desktop & mobile

packages/
  core/               → Business logic: pages, stores, hooks, providers, config
  ui/                 → Design system: shadcn/ui primitives, themes, styles
  i18n/               → 10-language type-safe translations (SSR & static)
  cli/                → Scaffolding tool (npm create @tntstack/app)
  eslint-config/      → Shared ESLint rules (Flat Config)
  typescript-config/  → Shared TypeScript configs

Both web and native import pages, layouts, and state from packages/core, and design system primitives from packages/ui. The web app runs with SSR and PWA support. The native app uses a static HTML export served by Tauri's Rust backend.

Supported Platforms

Platform Status Links
🌐 Web ✅ Available Live Demo
📱 PWA ✅ Available Live Demo
🪟 Windows ✅ Available Download Demo
🍎 macOS ✅ Available Download Demo
🐧 Linux ✅ Available Download Demo
🤖 Android ✅ Available Download Demo
📱 iOS ✅ Available Download Demo

🛠️ Tech Stack

Next.js Tauri 2 React
TypeScript Rust
Tailwind CSS shadcn/ui
Fumadocs Turborepo pnpm

⌨️ Core Commands

pnpm dev                  # Start all apps in dev mode
pnpm build                # Build everything
pnpm lint                 # Lint all packages
pnpm check-types          # TypeScript validation across all workspaces
pnpm web dev              # Web app only
pnpm tauri dev            # Desktop app only
pnpm tauri android dev    # Android app
pnpm tauri ios dev        # iOS app
pnpm shadcn add           # Add shadcn/ui components to packages/ui
pnpm clean                # Clean all build outputs

📖 Documentation

For setup guides, architecture, theming, i18n, deployment and more, see Documentation

🤝 Contributing

See CONTRIBUTING.md.

📄 License

MIT