HackerTrans
TopNewTrendsCommentsPastAskShowJobs

creativedg

no profile record

Submissions

The tech stack I've been refining for 6 years

2 points·by creativedg·5 tháng trước·1 comments

Show HN: Next.js-Based SaaS Framework

nextjs-boilerplate.com
1 points·by creativedg·5 tháng trước·0 comments

Show HN: Next.js Boilerplate 6.1 – a Next.js starter I've maintained for 5 years

github.com
1 points·by creativedg·6 tháng trước·0 comments

Show HN: Open-source Next.js 15 boilerplate – auth, DB, intl, tests, monitoring

4 points·by creativedg·11 tháng trước·0 comments

Next.js 15.5

nextjs.org
3 points·by creativedg·11 tháng trước·0 comments

Show HN: KeyboardStack – Control your macOS mouse with keyboard

keyboardstack.com
3 points·by creativedg·năm ngoái·0 comments

Make your apps interactive with Cloudflare Realtime and RealtimeKit

blog.cloudflare.com
2 points·by creativedg·năm ngoái·0 comments

Workers Observability: logs, metrics, and queries – all in one place

blog.cloudflare.com
2 points·by creativedg·năm ngoái·0 comments

Front end, back end, and database – now in one Cloudflare Worker

blog.cloudflare.com
5 points·by creativedg·năm ngoái·3 comments

"Just use Vite" with the Workers runtime

blog.cloudflare.com
2 points·by creativedg·năm ngoái·1 comments

Cloudflare Workflows is now GA: production-ready durable execution

blog.cloudflare.com
2 points·by creativedg·năm ngoái·0 comments

AutoRAG: Managed Retrieval-Augmented Generation on Cloudflare

blog.cloudflare.com
8 points·by creativedg·năm ngoái·0 comments

RFC: Deployment Adapters API for Next.js

github.com
3 points·by creativedg·năm ngoái·0 comments

Next.js 15.1

nextjs.org
2 points·by creativedg·2 năm trước·0 comments

Tailwind CSS v4.0 Beta 1

tailwindcss.com
168 points·by creativedg·2 năm trước·125 comments

Startup Program revamped: build and grow on Cloudflare

blog.cloudflare.com
2 points·by creativedg·2 năm trước·0 comments

We made Workers KV up to 3x faster – here's the data

blog.cloudflare.com
2 points·by creativedg·2 năm trước·0 comments

Automatically generating Cloudflare's Terraform provider

blog.cloudflare.com
3 points·by creativedg·2 năm trước·0 comments

Cloudflare partners with Internet Service Providers and network equipment

blog.cloudflare.com
2 points·by creativedg·2 năm trước·0 comments

A safer Internet with Cloudflare: free threat intelligence, analytics

blog.cloudflare.com
3 points·by creativedg·2 năm trước·0 comments

comments

creativedg
·năm ngoái·discuss
Great job by the Next.js team on this release, I just updated my Next.js boilerplate project to 15.3: https://github.com/ixartz/Next-js-Boilerplate

It works perfectly!
creativedg
·2 năm trước·discuss
Yes, it's very cool alternative and it removes the need for docker compose for dev environment.

On top of it, PGlite also perfect for CI and testing.
creativedg
·2 năm trước·discuss
I confirm it works perfectly in CI and locally. I'm using it in CI and locally.

Not sure about Prisma but it works with Drizzle ORM.
creativedg
·2 năm trước·discuss
Huge fan of PGlite.

It's the perfect solution to have Postgres without the need of Docker. With just `npm install`, you can have a Postgres instance on your computer. So, it's extremely easy to onboard a new developer in your team.

And, the good news, PGlite works perfectly with Next.js.

I'm using PGlite in local and development environment with Next.js Boilerplate: https://github.com/ixartz/Next-js-Boilerplate

With only one command `npm install`, you can have a full-stack application, which also includes the database (a working Postgres). And, no need to have/install external tools.
creativedg
·2 năm trước·discuss
You can take a look at: https://github.com/ixartz/SaaS-Boilerplate, it should give you some inspiration to structure your React apps with folder structure, component breakdown.
creativedg
·2 năm trước·discuss
Yes, they can try what I've built at https://pro-demo.nextjs-boilerplate.com
creativedg
·2 năm trước·discuss
I didn't get the change to customize the default and built-in components from Clerk. So, it's hard for me to share any experience. But, I know you can do little customization using https://clerk.com/docs/components/customization/overview and play with CSS and Tailwind CSS. Maybe, for complex customization, it's preferable to not use the pre-built components and build it yourself.

Currently, I just feel the default UI from Clerk works good with Shadcn UI, both works great together. Definitively not perfect but do a great to job for a solo developer or for a small team.

And, I mostly using for advanced authentication features like user impersonation, multi-tenancy, roles & permission.