Created: Dec 8, 2024
Stack
- Remix
- Drizzle
- Sqlite
- Uploadthing
Thoughts upon developing (probably irrelevant)
Remix has a straightforward logic, only took me a few days to understand the concepts of Remix.
Tried implementing proper html semantics and accessibility like aria-labels, etc.
I like drizzle better than prisma.
They kinda stick to web standards, so it's easy to understand.
No middlewares, so we have to check for user session in every route for authorization.
mmvergara / threads-clone
Simple threads clone made using remix, drizzle, sqlite.
Threads Clone
- Created: Dec 8, 2024
Stack
- Remix
- Drizzle
- Sqlite
- Uploadthing
Installation
Fill in the .env file with the correct values. then
# Install dependencies
npm install
# Create local.db
touch local.db
# Push schema to local.db
npx drizzle-kit push
# Run
npm run dev
# Open studio for database visualization
npx drizzle-kit studio
Screenshots
Thoughts upon developing (probably irrelevant)
-
Remix has a straightforward logic, only took me a few days to understand the concepts of Remix.
-
Tried implementing proper html semantics and accessibility like aria-labels, etc.
-
I like drizzle better than prisma.
-
They kinda stick to web standards, so it's easy to understand.
-
No middlewares, so we have to check for user session in every route for authorization.
Top comments (0)