Created: Dec 8, 2024
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.
Fill in the .env file with the correct values. then
<span># Install dependencies</span> npm install <span># Create local.db</span> touch local.db <span># Push schema to local.db</span> npx drizzle-kit push <span># Run</span> npm run dev <span># Open studio for database visualization</span> npx drizzle-kit studio
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.
https://remix.run/docs/en/1.19.3/pages/faq#how-can-i-have-a-parent-route-loader-validate-the-user-and-protect-all-child-routes
The above is the detailed content of I just cloned Threads!. For more information, please follow other related articles on the PHP Chinese website!