
Getting Started Guide
How to Use PlayCode
A practical guide to get you up and running with PlayCode. Written by Delv Editorial, Delv Team.
Getting started with PlayCode
In this guide, you'll learn how to set up PlayCode and create your first interactive website using AI tools. You'll be ready to build and test your projects directly in your browser without any complicated setup.Step 1: Sign up and set up
- Go to PlayCode.
- Click on the "Sign Up" button in the top right corner.
- Choose to sign up with your email or use a social login (Google or GitHub).
- Confirm your email if prompted. Once signed in, select "New Project" to start.
Step 2: Your first project
- After clicking "New Project," choose a template (e.g., React, Vue, or Vanilla JS).
- You’ll see a code editor on the left and a live preview on the right.
- In the code editor, replace the default code with a simple interactive element. For example, for a React project, you can add:
function App() {
return <h1>Hello, PlayCode!</h1>;
}
export default App;
- Click the "Run" button at the top to see your changes reflected in real-time in the preview.
Step 3: Get better results
- Use the "Settings" gear icon in the top right to configure your project settings, such as enabling TypeScript or selecting a CSS framework.
- Explore the "AI Models" panel on the left to access different AI tools that can help you generate code snippets or troubleshoot issues.
- Use the "Docs" button in the top menu for quick access to documentation relevant to your chosen framework.