IDE

    Show the real code.

    Open your files in a full editor inside a session, edit them live with a few people, and put them on the stage for everyone to follow. Saved to your Cloud for next time.

    IDEsrc useAuth.ts2 editing
    useAuth.ts App.tsx
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    import { useState } from 'react'
     
    export function useAuth() {
      const [user, setUser] = useState(null)
     
      async function signIn(email) {
        const res = await api.post('/login', { email })
        setUser(res.user)Sam
      }
     
      return { user, signIn }
    Saved to Cloud 0 problemsLn 8, Col 30TypeScript
    Real files · co-edited · saved to Cloud
    Real codeYour files, syntax-highlighted
    Co-editedA few people, live
    Saved to CloudReopen it next time
    In a session

    A real editor, on the stage.

    The code opens in a full editor with your files and syntax highlighting, shown on the session stage so the room sees exactly what you see. Edit while you talk. When you stop, it is saved to your Cloud.

    What it is for

    For the times you have to show the code.

    When a slide of the code is not enough, and people need to see the real thing change.

    Teach it

    Walk through real code with a class, editing as you explain, so people see the change happen.

    Demo it

    Show how something works from the actual file, not a slide of it.

    Pair on it

    Bring an editor or two in and work through a change together, live.

    Interview with it

    Give a candidate a real editor and watch how they think.

    The details

    What it does, and what it does not.

    A real editor, in the browser

    Your files open in a full code editor with syntax highlighting. Nothing to install.

    A few people can edit

    The host presents by default. Bring in a small number of editors and work the same file together.

    It shows, it does not run

    The IDE presents and edits code live. It does not execute or deploy it.

    Saved to your Cloud

    The code saves with the session, so you reopen it next time.

    One platform

    Present code in any way you go live.

    The IDE is part of the platform. Bring it into a room, a live stream, or a produced show — every way you go live.

    Show the code.