Ship a Full-Stack App with One Prompt

Copy this prompt into your AI coding agent, or open it in one below.

Give this to your AI Create a to-do list app using Puter.js

Coding manually? see the guide

Blog

MiniMax M2.5 Is Now Available in Puter.js

On this page

Puter.js now supports MiniMax M2.5, the latest frontier model from MiniMax that delivers near-Opus-level coding performance at a fraction of the cost.

What is MiniMax M2.5?

MiniMax M2.5 is a 230 billion parameter Mixture of Experts model (10B active) extensively trained with reinforcement learning across hundreds of thousands of real-world environments. Key highlights include:

  • Elite Coding: Scores 80.2% on SWE-Bench Verified, within 0.6 points of Claude Opus 4.6
  • Best-in-Class Tool Use: 76.8% on BFCL Multi-Turn, 13+ points ahead of the competition
  • Agentic Search: 76.3% on BrowseComp with built-in web browsing and context management
  • Office Productivity: 74.4% on MEWC — generates Word docs, Excel spreadsheets, and PowerPoint decks
  • Lightning Fast: Ships in two variants — standard (50 TPS) and Lightning (100 TPS), completing tasks 37% faster than M2.1

Examples

Complex coding task

puter.ai.chat("Refactor this Express app to use dependency injection and add comprehensive error handling middleware",
  { model: 'minimax/minimax-m2.5' }
);

Agentic workflow

puter.ai.chat(`Break down and plan the implementation for:
1. A real-time notification system using WebSockets
2. Database schema with proper indexing
3. Rate limiting and retry logic
4. Unit and integration tests`,
  { model: 'minimax/minimax-m2.5', stream: true }
);

Tool use and function calling

puter.ai.chat("Search for the latest security advisories for Node.js and summarize the critical ones",
  { model: 'minimax/minimax-m2.5' }
);

Office document generation

puter.ai.chat("Create a detailed project proposal outline for migrating a monolith to microservices, including timeline and risk assessment",
  { model: 'minimax/minimax-m2.5' }
);

Get Started Now

Just add one library to your project:

// npm install @heyputer/puter.js
import { puter } from '@heyputer/puter.js';

Or add one script tag to your HTML:

<script src="https://js.puter.com/v2/"></script>

No API keys needed. Start building with MiniMax M2.5 immediately.

Learn more:

Ship a Full-Stack App with One Prompt

Give this to your AI Create a to-do list app using Puter.js

Coding manually? see the guide