Build a full stack Next.js app from an AI prompt.
Built by Elie. Also check out Inbox Zero, an open source email app to automate your emails and reach inbox zero fast.
Full Stack AI, fsai
, is a CLI that uses AI to build a full-stack app for you.
The AI will:
It can use the package manager of your choice. It defaults to pnpm
unless you prompt the AI otherwise.
We've been experimenting with a more general AI coder called Aleph0 which is in beta.
export OPENAI_API_KEY=...
npx fsai gen "Build a clone of Twitter called StackPrompt where people prompt instead of tweet. Allow users to follow one another and to like prompts. Use GitHub for log in. Charge users a monthly fee for premium functionality."
Then cd
into the newly created app folder, set the environment variables and in the .env
file and run npm run dev
to see your app live in the browser at http://localhost:3000.
You can install the package globally and run as follows:
pnpm i -g fsai
export OPENAI_API_KEY=...
fsai gen "Build a clone of Twitter called StackPrompt where people prompt instead of tweet. Allow users to follow one another and to like prompts. Use GitHub for log in. Charge users a monthly fee for premium functionality."
Under the hood this project uses Kirimase.
If you want to clone the repo and run it locally:
pnpm i
export OPENAI_API_KEY=...
npx tsx src/index.ts gen "Build a clone of Twitter called StackPrompt where people prompt instead of tweet. Allow users to follow one another and to like prompts. Use GitHub for log in. Charge users a monthly fee for premium functionality."