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

NVIDIA Nemotron 3 Nano Is Now Available in Puter.js

On this page

Puter.js now supports Nemotron 3 Nano, the latest addition to NVIDIA's Nemotron model family.

What is NVIDIA Nemotron 3 Nano?

NVIDIA Nemotron 3 Nano is a fast, cost-efficient model optimized for software debugging, content summarization, and AI assistant workflows. It uses a hybrid MoE architecture that achieves 4x higher throughput than Nemotron 2 Nano. With a 1-million-token context window, it handles long, multistep tasks with ease.

Examples

Basic Chat

puter.ai.chat("Explain the concept of machine learning in simple terms", {
    model: "nvidia/nemotron-3-nano-30b-a3b:free"
})

Software Debugging

puter.ai.chat("Debug this code: function sum(a, b) { return a - b; }",
    { model: "nvidia/nemotron-3-nano-30b-a3b:free" }
)

Content Summarization

puter.ai.chat("Summarize the key points of quantum computing in 3 bullet points",
    { model: "nvidia/nemotron-3-nano-30b-a3b:free" }
)

Get Started Now

Just add one script tag to your HTML:

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

No API keys or NVIDIA account needed. Start building with Nemotron 3 Nano 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