Which stacks and themes are available right now?
Which stacks and themes are available right now?
Currently, the Next.js + Bento combination is fully available. React and HTML stacks, along with the Frost and Mono themes, are actively in development and will be released soon. Star the GitHub repo to get notified when new combinations ship.
Do I need to install anything globally before using Slik?
Do I need to install anything globally before using Slik?
No global installation is required. Running
npx create-slik@latest my-app downloads and executes the CLI automatically. The only prerequisite is having Node.js 18 LTS or later and npm installed on your machine.Can I use Slik Dev with an existing project?
Can I use Slik Dev with an existing project?
No. Slik Dev generates brand-new projects from scratch — it is not a migration tool or a component library you add to an existing codebase. Run
npx create-slik@latest in a new directory to start fresh.My dev server won't start after scaffolding. What should I check?
My dev server won't start after scaffolding. What should I check?
Work through these steps:
- Make sure you ran
npm installinside the project directory beforenpm run dev. - Check your Node.js version — run
node -vand confirm it’s 18.x or later. - Check for port conflicts: if something is already running on port 3000, Next.js will prompt you to use a different port.
- If database was selected, make sure your
.env.localfile has a validDATABASE_URLbefore starting the server.
How do I update dependencies in my Slik Dev-generated app?
How do I update dependencies in my Slik Dev-generated app?
Slik Dev generates your project with the latest stable versions at the time of scaffolding. To update later, run:For a full upgrade of major versions, use a tool like
npx npm-check-updates to review and apply changes.How do I add my own database tables?
How do I add my own database tables?
Edit This syncs your schema to the database. Run
prisma/schema.prisma to define your models, then run:npx prisma generate afterward to update the Prisma Client types.How do I enable Google or GitHub login?
How do I enable Google or GitHub login?
After scaffolding with auth enabled, open Then restart your dev server. See the auth configuration page for the full setup walkthrough.
.env.local and add your provider credentials:Is Slik Dev open source?
Is Slik Dev open source?
Yes. Slik Dev is released under the MIT License and the source code is available on GitHub at FaizyabHussain07/slik-dev-web.
Can I contribute new themes or stacks?
Can I contribute new themes or stacks?
Absolutely. Fork the repository, create your feature branch, build your theme or stack, and open a pull request. The project actively welcomes community contributions for new themes, UI concepts, and core improvements.
What Node.js version does Slik Dev require?
What Node.js version does Slik Dev require?
Node.js 18 LTS or later is recommended. Earlier versions may work but are not officially supported. Check your version with
node -v.