How to Build a Simple AI App with Cursor in Under 2 Hours
How to Build a Simple AI App with Cursor in Under 2 Hours
Building an AI app sounds daunting, right? Especially if you’re a beginner. But what if I told you that you could get a basic AI app up and running in under two hours? In 2026, tools like Cursor have made it easier than ever to create simple applications without needing a PhD in machine learning. Let’s dive into how you can use Cursor to build a straightforward AI app, even if you’re just starting.
Prerequisites: What You Need Before You Start
Before we jump into the how-to, make sure you have the following:
- Cursor Account: Sign up for a free account at Cursor.
- Basic Coding Knowledge: Familiarity with JavaScript will help, but you can follow along if you’re willing to learn.
- Node.js: Ensure you have Node.js installed on your computer. You can download it here.
- A Code Editor: Use any code editor you prefer, like VSCode or Atom.
Step 1: Setting Up Your Environment
First things first, let’s set up our environment.
- Open your terminal and create a new project directory:
mkdir simple-ai-app cd simple-ai-app - Initialize a new Node.js project:
npm init -y - Install the Cursor SDK:
npm install cursor-sdk
Step 2: Building Your First AI Function
Now, let’s write some code to create a simple AI function. For this example, we’ll create an app that generates random jokes using Cursor’s built-in capabilities.
-
Create a new file called
app.jsin your project directory. -
Add the following code to
app.js:const Cursor = require('cursor-sdk'); const cursor = new Cursor(); async function getJoke() { const joke = await cursor.generate({ prompt: "Tell me a joke", maxTokens: 30, }); console.log(joke); } getJoke(); -
Save the file.
Step 3: Running Your AI App
Now that we’ve written our code, let’s run it!
-
In your terminal, run the following command:
node app.js -
You should see a random joke printed in your terminal. Congratulations! You’ve just built a simple AI app in under two hours.
Troubleshooting: Common Issues and Solutions
- Error: Module not found: If you encounter this error, ensure that you installed the Cursor SDK correctly.
- API Key Issues: If your API key is not working, double-check it in your Cursor dashboard.
What's Next: Expanding Your AI App
Once you’ve got your basic app running, consider adding features like:
- User Input: Allow users to request specific types of jokes.
- Web Interface: Use frameworks like Express.js to create a web interface.
- Deployment: Host your app using platforms like Heroku or Vercel.
Conclusion: Start Here
Building an AI app doesn’t have to be complicated. With Cursor, you can create something functional in just a couple of hours. Start by following the steps above, and don’t hesitate to experiment with your code. The best way to learn is by doing!
If you're interested in hearing more practical insights and tools for indie hackers, check out our weekly podcast, Built This Week, where we share real experiences and lessons learned from building in public.
Follow Our Building Journey
Weekly podcast episodes on tools we're testing, products we're shipping, and lessons from building in public.