Quick start tutorial
This tutorial gets you from a fresh install to a project you can run and publish.
What you’ll do
Section titled “What you’ll do”- Install the app and create a project.
- Open the project in the editor.
- Run the dev server and make a change with AI.
- (Optional) Publish and embed in Webflow.
Prerequisites
Section titled “Prerequisites”- Download and install Ssscript for your platform.
Step 1 — Create a project
Section titled “Step 1 — Create a project”- Launch Ssscript. You’ll see the entry screen with a logo and project list.
- Click Create project.
- Enter a project name (e.g. “my-site”).
- Choose a starter — Single entry (one production
app.js) or Multi entry (per-page bundles fromsrc/pages/). See Starters. - Click Create. The app scaffolds the project and opens it.
Step 2 — Explore the editor
Section titled “Step 2 — Explore the editor”Once the project opens, you’re in the workspace. Press ⌘2 / Ctrl+2 to switch to Code view if you’re not already there.
- File tree (left) — browse your project files. The main code lives under
src/. - Code editor (center) — click a file to open it. Try opening
src/app.ts— the entry point. - AI panel (right) — your AI assistant. Toggle it with ⌘L / Ctrl+L.
- Terminal (bottom) — install, run, and build. Toggle with ⌘J / Ctrl+J.
Step 3 — Run and edit
Section titled “Step 3 — Run and edit”- Open the terminal panel (⌘J).
- Click Run to start the dev server. You’ll see output like
Server running at http://localhost:6454. - Open that URL in your browser to see the project running.
Now make a change using AI:
- Open the AI panel (⌘L) or switch to Agent view (⌘1).
- Type a prompt:
@@build Add a heading that says "Hello from Ssscript" and style it with a fade-in animation on load- The AI writes the code. Review the diffs — if auto-apply is on, the changes are already saved. Check the browser to see the result (live reload updates automatically).
Step 4 — Publish (optional)
Section titled “Step 4 — Publish (optional)”Once you’re happy with your project:
- Make sure you’re signed in (click the account banner if not).
- Click Publish in the header.
- Confirm the deploy URL and click Publish now.
- When complete, your project is live at
https://ssscript.dev/<username>/<project>/.
To embed in Webflow, open Embed from the terminal panel, copy the snippets, and paste them into your Webflow site’s custom code. See Embedding in Webflow for detailed instructions.
- Building a component — Build a module component step by step.
- Your first flow — Walk through a full plan-then-build AI workflow.
- Editor — Full editor, view modes, and shortcuts reference.