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

推荐订阅源

freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
G
Google Developers Blog
Hugging Face - Blog
Hugging Face - Blog
博客园 - 【当耐特】
S
SegmentFault 最新的问题
宝玉的分享
宝玉的分享
博客园 - Franky
博客园_首页
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
WordPress大学
WordPress大学
有赞技术团队
有赞技术团队
月光博客
月光博客
博客园 - 聂微东
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
小众软件
小众软件
Microsoft Security Blog
Microsoft Security Blog
Last Week in AI
Last Week in AI
Vercel News
Vercel News
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
爱范儿
爱范儿
J
Java Code Geeks
博客园 - 叶小钗
Engineering at Meta
Engineering at Meta
阮一峰的网络日志
阮一峰的网络日志

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Indie Dev Incorporation — When Should You Form a Company?
kanta13jp1 · 2026-04-29 · via DEV Community

kanta13jp1

Indie Dev Incorporation — When Should You Form a Company?

The "should I incorporate?" question has a break-even answer rooted in tax math.

Sole Proprietor vs Corporation Tax Rates (Japan)

Sole proprietor (income tax + resident tax + business tax):
  Taxable income ¥3.3M–¥6.95M:  20% + 10% = ~30%
  Taxable income ¥6.95M–¥9M:    23% + 10% = ~33%
  Taxable income ¥9M–¥18M:      33% + 10% = ~43%

Corporation (corporate tax + local taxes):
  Annual income ≤ ¥8M:   corporate tax 15% + local = effective ~21%
  Annual income > ¥8M:   corporate tax 23.2% + local = effective ~30%

Enter fullscreen mode Exit fullscreen mode

Rule of thumb break-even: annual profit ¥6M–¥8M

At ¥6M annual profit:
  Sole prop: ~¥1.8M in taxes (30%)
  Corp: set executive salary to split income → effective rate 20–25%
  → Saves ¥300K–¥600K / year

Setup cost (LLC): ~¥100K
Recouped in year one.

Enter fullscreen mode Exit fullscreen mode

Main Benefits of Incorporating

1. Split income via executive salary
   Corporate profit → executive salary (employment income deduction applies)
   → lowers effective tax rate

2. Broader expense deductions
   Portion of rent / car / insurance / employee benefits

3. Loss carryforward period
   Sole prop: 3 years → Corporation: 10 years

4. Business credibility
   B2B contracts, API agreements, bank loans

5. Retirement savings
   Small business mutual aid + executive retirement bonus (large tax-free allowance)

Enter fullscreen mode Exit fullscreen mode

LLC vs Corporation (Japan)

LLC (Godo-kaisha):
  Setup cost: ~¥60K (no notary required for articles)
  Financial disclosure: not required
  External investment: harder to accept
  Best for indie devs: tax savings + low cost + simple structure

Corporation (Kabushiki-kaisha):
  Setup cost: ~¥250K
  Credibility: higher
  Equity funding / IPO: supported
  Choose this if you're building a startup

Enter fullscreen mode Exit fullscreen mode

Incorporation Decision Checklist

// Consider incorporating when 2+ of these apply
final shouldIncorporate = [
  annualProfit > 6_000_000,       // tax benefit kicks in
  hasBToBClients,                 // corporate entity often required
  planningToHire,                 // triggers social insurance obligations
  seekingExternalFunding,         // need to issue equity
].where((c) => c).length >= 2;

Enter fullscreen mode Exit fullscreen mode

Summary

Break-even      → annual profit ¥6M–¥8M is the rule of thumb
Entity type     → LLC for indie devs (¥60K setup / simple structure)
Key benefits    → income splitting + broader expenses + 10-year loss carryforward
Timing signal   → 2+ of: profit threshold / B2B / hiring / funding

Enter fullscreen mode Exit fullscreen mode

Incorporation is not just about taxes — it also signals that the business is serious.