Next.js Discord

Discord Forum

Looking for examples for good integrations of technologies

Unanswered
omer posted this in #help-forum
Open in Discord
im creating a simple project with routing, authentication, users management and a search bar. im looking for people to share their used technologies and integrations or suggestions for my project (for example: NextJS with postgresSQL as the data access layer and Drizzle as the object relational mapping, using ShadcnUI for the user interface, NextAuth for authentication etc...), im not quite sure what to use for the specific purpose of my website or if it even matters. guidance or assistance would be appreciated

7 Replies

@B33fb0n3 I am using: nextjs, tailwind, shadcn, next-auth, drizzle, postgresql (custom server), s3, react query and bunnycdn. Did I miss something?
did you follow the official auth js "tutorial" or another source? im using typescript so im following the one they linked here
oh yea, I am using typescript as well in my project. And yea, I also added own keys on my session object
- Grab technologies solves your problem not because its cool / popular 🙂
- Read more blogs and articles.

Auth is a big stuff, if you are starting out its fine, but if you want to learn more then
Read this: https://thecopenhagenbook.com/
its a short book.

as a data security next-js is secure on server renders as it doesnt expose any keys, but you can get more and do more
https://nextjs.org/blog/security-nextjs-server-components-actions
don't just read it, but understand.
ty