最先进的 Nano Banana 图像生成和编辑应用程序。您的 AI 图像生成和修改的中心平台。直观的 UI 功能引用了 Imgur 等图像共享平台的功能。
最先进的 Nano Banana 图像生成和编辑应用程序。您的 AI 图像生成和修改的中心平台。直观的 UI 功能引用了 Imgur 等图像共享平台的功能。
Nano Banana Editor
Generate and edit images with every Nano Banana model, in one editor.
nanobananaeditor.dev · Self-hosting guide · Architecture · Changelog
Nano Banana Editor is a React + TypeScript app for Google's Gemini image models. Write a prompt, drop in reference photos, paint a mask, ground the prompt in live search results, and render anything from a 512px draft to a 4K final. Every render lands in a local history you can branch from.
Join the Vibe Coding is Life Skool community for the one-click Bolt.new install, project downloads, live build sessions and prompts.
| Model | ID | Output sizes | Inputs | Search grounding | Thinking |
|---|---|---|---|---|---|
| Nano Banana 2 Lite | gemini-3.1-flash-lite-image |
1K | up to 14 | no | Fast / Deep |
| Nano Banana 2 | gemini-3.1-flash-image |
512, 1K, 2K, 4K | up to 10 | yes | Fast / Deep |
| Nano Banana Pro | gemini-3-pro-image |
1K, 2K, 4K | up to 6 | yes | always on |
Aspect ratios: 1:1, 3:2, 2:3, 4:3, 3:4, 5:4, 4:5, 16:9, 9:16, 21:9, plus 4:1, 1:4, 8:1 and 1:8 on the two Flash models.
One catalog, src/lib/models.ts, defines what each model can do and what it costs. The edge function keeps an identical copy so the client can never lie about a price.
| Model | 512 | 1K | 2K | 4K |
|---|---|---|---|---|
| Nano Banana 2 Lite | – | 1 | – | – |
| Nano Banana 2 | 1 | 1 | 2 | 3 |
| Nano Banana Pro | – | 3 | 3 | 5 |
New accounts start with 5 free credits, granted by a database trigger on signup. Search grounding adds 1 credit. Credits are reserved server-side before the model runs and refunded automatically if the render fails or comes back empty.
Bring your own key: paste a Gemini API key from AI Studio in Settings and requests bill your Google account directly. The key is stored only in your browser and sent per request over HTTPS.
| Keys | Action |
|---|---|
⌘ / Ctrl + Enter |
Generate or apply edit |
G E M |
Generate, Edit, Mask mode |
[ ] |
Brush smaller / larger |
X |
Brush / eraser |
Z |
Undo stroke |
C |
Compare before / after |
D |
Download |
H P |
Toggle history / composer |
T |
Toggle theme |
0 |
Fit to screen |
The short version is below. The full walkthrough, including Stripe, custom SMTP and troubleshooting, is in docs/self-hosting.md.
git clone https://github.com/markfulton/NanoBananaEditor.git
cd NanoBananaEditor
npm install
cp .env.example .env
Fill in VITE_SUPABASE_URL and VITE_SUPABASE_ANON_KEY from your Supabase project settings.
Apply the migrations in supabase/migrations in order (Supabase CLI: supabase db push, or paste them into the SQL editor). They create the credits table, the Stripe tables, the usage log and the server-only credit functions.
Set the secrets, then deploy:
supabase secrets set GEMINI_API_KEY=your-key
supabase secrets set STRIPE_SECRET_KEY=sk_... STRIPE_WEBHOOK_SECRET=whsec_...
supabase functions deploy nano-image
supabase functions deploy stripe-checkout
supabase functions deploy stripe-webhook --no-verify-jwt
generate-image and edit-image are legacy endpoints kept for older builds. New installs do not need them.
npm run dev
Open http://localhost:5173. Sign up, confirm the email, and spend the 5 starter credits. After that, buy credits through Stripe or paste your own Gemini key in Settings.
| Command | What it does |
|---|---|
npm run dev |
Vite dev server |
npm run build |
Production build to dist/ |
npm run typecheck |
Strict TypeScript check |
npm run lint |
ESLint |
npm run sync:models |
Copy the model catalog into the edge function after editing it |
The long version, with the request flow and the reasoning behind masks and multi-turn edits, is in docs/architecture.md.
…
Stack: React 18, TypeScript, Tailwind, Zustand, TanStack Query, Konva, Radix, Vite. Supabase for auth, Postgres and edge functions. @google/genai runs only inside the edge function, so the house API key never reaches the browser.
SECURITY DEFINER function that only the service role can execute. Users can read their balance and nothing else.usage_log with model, size, tokens and duration.Issues and pull requests are welcome. Keep components focused, keep TypeScript strict, and run npm run typecheck && npm run lint && npm run build before opening a PR. If you touch src/lib/models.ts, run npm run sync:models and commit both copies.
Copyright © 2026 Mark Fulton. Licensed under the GNU Affero General Public License v3.0. If you run a modified version as a network service you must publish your source under the same license.
Built by Mark Fulton · Reinventing.AI · Vibe Coding is Life
暂无开放 Issues,或尚未同步最近议题。