HackerTrans
TopNewTrendsCommentsPastAskShowJobs

creativedg

no profile record

Submissions

The tech stack I've been refining for 6 years

2 points·by creativedg·5 เดือนที่ผ่านมา·1 comments

Show HN: Next.js-Based SaaS Framework

nextjs-boilerplate.com
1 points·by creativedg·5 เดือนที่ผ่านมา·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 เดือนที่ผ่านมา·0 comments

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

4 points·by creativedg·11 เดือนที่ผ่านมา·0 comments

Next.js 15.5

nextjs.org
3 points·by creativedg·11 เดือนที่ผ่านมา·0 comments

Show HN: KeyboardStack – Control your macOS mouse with keyboard

keyboardstack.com
3 points·by creativedg·ปีที่แล้ว·0 comments

Make your apps interactive with Cloudflare Realtime and RealtimeKit

blog.cloudflare.com
2 points·by creativedg·ปีที่แล้ว·0 comments

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

blog.cloudflare.com
2 points·by creativedg·ปีที่แล้ว·0 comments

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

blog.cloudflare.com
5 points·by creativedg·ปีที่แล้ว·3 comments

"Just use Vite" with the Workers runtime

blog.cloudflare.com
2 points·by creativedg·ปีที่แล้ว·1 comments

Cloudflare Workflows is now GA: production-ready durable execution

blog.cloudflare.com
2 points·by creativedg·ปีที่แล้ว·0 comments

AutoRAG: Managed Retrieval-Augmented Generation on Cloudflare

blog.cloudflare.com
8 points·by creativedg·ปีที่แล้ว·0 comments

RFC: Deployment Adapters API for Next.js

github.com
3 points·by creativedg·ปีที่แล้ว·0 comments

Next.js 15.1

nextjs.org
2 points·by creativedg·2 ปีที่แล้ว·0 comments

Tailwind CSS v4.0 Beta 1

tailwindcss.com
168 points·by creativedg·2 ปีที่แล้ว·125 comments

Startup Program revamped: build and grow on Cloudflare

blog.cloudflare.com
2 points·by creativedg·2 ปีที่แล้ว·0 comments

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

blog.cloudflare.com
2 points·by creativedg·2 ปีที่แล้ว·0 comments

Automatically generating Cloudflare's Terraform provider

blog.cloudflare.com
3 points·by creativedg·2 ปีที่แล้ว·0 comments

Cloudflare partners with Internet Service Providers and network equipment

blog.cloudflare.com
2 points·by creativedg·2 ปีที่แล้ว·0 comments

A safer Internet with Cloudflare: free threat intelligence, analytics

blog.cloudflare.com
3 points·by creativedg·2 ปีที่แล้ว·0 comments

comments

creativedg
·ปีที่แล้ว·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 ปีที่แล้ว·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 ปีที่แล้ว·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 ปีที่แล้ว·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 ปีที่แล้ว·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 ปีที่แล้ว·discuss
Yes, they can try what I've built at https://pro-demo.nextjs-boilerplate.com
creativedg
·2 ปีที่แล้ว·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.
creativedg
·3 ปีที่แล้ว·discuss
Just update my free and open source Next.js Landing Page template to version 14 without any issue: https://github.com/ixartz/Next-JS-Landing-Page-Starter-Templ...
creativedg
·3 ปีที่แล้ว·discuss
It took me 5 months to build my first SaaS from scratch, which is way too much. For example, I could use this time to focus on marketing.

During my development process, I realized that 80% of the features I implemented were also present in other SaaS products. This is why I created Nextless.js, a SaaS Boilerplate that includes all the necessary features for launching a successful SaaS.
creativedg
·3 ปีที่แล้ว·discuss
The example you have mentioned only uses Python in the backend. It's based on Django or Flask. Then, in the frontend, it uses JavaScript.

Building a SaaS from scratch required a lot of time. Happy to see a 100% Python SaaS Starter kit, usually it was reserved for JavaScript because of the frontend. In the past, you are forced to use JavaScript for the frontend.

I know it because I'm the author of Nextless.js [1], a full-stack JavaScript starter kit that is totally based on JavasScript, from frontend to backend. Using only one programming language was my competitive advantage compared to the boilerplate based on Ruby, Python or PHP.

I think in the future more and more languages can be used in the frontend like Rust, etc... There are already some frameworks you can use to build frontend in Rust. It's only the beginning.

---

[1]: https://nextlessjs.com
creativedg
·3 ปีที่แล้ว·discuss
I was heavily inspired by Bullet Train to build https://nextlessjs.com using JavaScript ecosystem.
creativedg
·3 ปีที่แล้ว·discuss
It's so amazing to see how the tech community inspires and learns from one another. Laravel found inspiration from Rails. Then, seeing Bullet Train was inspired back from the Laravel ecosystem with Laravel Spark.

In the past, I was jealous of the Ruby ecosystem with an extremely large community (the grass is always greener on the other side?). And, thinking the JavaScript ecosystem was left behind, but now I am hopeful that the JavaScript ecosystem has finally caught up.

I can totally confirm Bullet Train is an inspiration for many SaaS Boilerplates. I was personally inspired by Bullet Train to build Nextless.js [1], a Next.js based SaaS Boilerplate, bringing SaaS starter kits in Next.js/React/JavaScript ecosystem.

--- [1]: https://nextlessjs.com
creativedg
·3 ปีที่แล้ว·discuss
Thank you Vercel team, it works perfectly! Just updated my Next.js Boilerpalte to version 13.3 without any issue: https://github.com/ixartz/Next-js-Boilerplate
creativedg
·4 ปีที่แล้ว·discuss
A picture is worth a thousand words, I'm currently writing the blog post but I believe the diagram is already representing 80% of the blog post.