In this guide you'll develop your own web application from scratch using plain English in the Cursor IDE. Cursor is the leading AI-powered code editor, capable of instantly making code changes in complex projects across multiple files.
The development process is changing rapidly. Instead of learning programming languages and frameworks, you'll now need to carefully decompose projects into tasks, provide sufficient context to LLM helpers, and know how to recover from dead ends. Once you master this, you'll be able to start projects outside your area of expertise, even without any developers.
This React+TypeScript+Vite+MUI template allows you to run it locally in a Cursor IDE. Replace it with your logic and deploy to web.
This guide will take around 1 to 2 hours of your time.
Before we dive into React, let's spend 10-20 minutes in a simpler setup.
- Install Cursor IDE. If you had it installed before, Cmd+Shift+P "Attempt Update" to get the latest update
- Press
Cmd+I
(Ctrl+I
) and ask Cursor to make a simple website. Ask for any functionality and UI. Try asking in your language (Spanish, Polish etc.):

create a simple html website with easy conversion between 7 main time zones.
time in all of theme is displayed simultaneously, and I can change hh and mm
in any of them in one click or by typing
- Click
Accept All
:

- Open this file
index.html
in your browser (File -> Open):

- In the same Composer chat, ask for changes:
make a solid-looking modern UI, draw real clock faces for each,
align them horizontally, also draw HH:MM numbers

Again, click Accept All
when available and refresh your page in the browser:

- Try different ideas. You may retry from scratch with a completely different idea in mind. How would you prompt to get that? Research prompt techniques online.

- This was a simple single-file application. The true power of Cursor comes in instantly making changes throughout many files in a big project. This allows you to build complex features. For that, we need to use a React library and some tooling - which is what this template's files provide.
- Go here -> and install Node.js version 20
- On Windows, do it directly to Windows, NOT to WSL-Ubuntu.
- Don't try installing via your package manager, or you can get an outdated Node version like v12. You need at least v18 for Vite.
- Log into Github
Optionally watch my stream in Russian
Fork this repo:

Then clone it locally using GitHub Desktop
Then open this project (web-2024-template
) in Cursor (📁 Open a folder
), open package.json
, hover dev
and click Run Script
:
Then open the link it gives in your browser.
Open src/App.tsx
, then press Cmd+I (or Ctrl+I), then type your request. Eg.
Instead of a todo list app, make an app to store and edit recipes for dishes.
Allow to recalculate number of portions for each dish.
Populate with 5 boilerplate dishes.
Make funky styling.
You can write your mother tounge (Spanish, Polish etc.) - it'll understand
Hit Enter, then once it's done - hit Acccept All and reload your live demo in the browser.
See troubleshooting if anything fails.
Once you've changed anything, open in Cursor, write a commit message in the Message field (a short summary of your changes).
If you wrote a message, press Commit, then press Sync.
The UI here is annoying and humiliating, I know.
You may also do it from GitHub Desktop.
If you're lost, open a Terminal, press Cmd+K (Ctrl+K) and describe what you want from Git in plain English.
In the Cursor IDE, open a separate Terminal and run:
npm run deploy
If you get errors during deployment, pasted them to Cursor's Composer, and it'll try to fix. Then retry npm run deploy
until it succeeds.
Then enable the website link on Github: click "Use your GitHub Pages website":



You should see your changes live.
- Break down new functionality into smallest possible bits. Don't bundle several unrelated features: if you get an error, you'll lose more time
- Once a Cursor made any small step in the right direction - commit
- Press "+" to start a new Composer and erase unnecessary previous context. Cursor knows what you did before because it looks into the current code
- If Cursor broke things: either Reject All, press "+" and start from the last commit; or try 2-3 attempts at sending error messages to it and ask to fix
- Use
@Codebase
and also mention all files that might have a relevant context - Ask Cursor to add a debug output and paste it to composer
- Ask Cursor to add a debug UI at the right place in your application. Ask to print out all relevant app state there
- Try attaching reference screenshots and mockups as images to Composer
- Try building anything with OpenAI API
- Read about features
- Read the docs
- https://cursorcasts.com/
- https://github.com/PatrickJS/awesome-cursorrules
- https://cursor.directory/
- https://v0.dev/ and shadcn
You can try Replit Agent, although this will cost you $25 (no free trial). UX/vision-wise, it's mind-blowing. However, I can't get any meaningful results out of it so far. Worth trying, but it's 2024, so LLMs can still be silly.
Do you?
If you simply want to persist data, ask Cursor to save data in local storage.
If you need to persist it across users or devices, ask Cursor to use Firestore
If you need authorization, ask Cursor to use Firebase Authentication
If you need a logic to process user's data on the backend - start with Firebase Cloud Functions
- Create an empty folder on your computer.
- File -> Open Folder it in Cursor.
Cmd+I
(Ctrl+I
), typecreate a simple telegram bot
.- Read carefully what it tells you to do
- If something doesn't work, replace
pip
withpip3
andpython
withpython3
- You need to kill (Ctrl+C) and rerun your
python3 bot.py
after every code change - since python scripts don't automatically reload after their code has been changed.
If you encountered a tricky situation while running this guide, please send screenshots to cxielamiko@gmail.com or Vitaly Pavlenko on Telegram so I can add the fix for it to

Type yes
, Enter.

Type fix
in the file COMMIT_EDITMSG
(on line 1), then Save the current file.
Next time write a commit message right in the message box:

- Type
git
to your terminal. If git is not found, install git - If you never committed to git on this machine, run in the terminal with your own name and email:
git config --global user.name "Your Name"
and
git config --global user.email "youremail@example.com"