Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

App Dir & Tailwind SoC questions #32

Closed
appjitsu opened this issue May 23, 2023 · 6 comments
Closed

App Dir & Tailwind SoC questions #32

appjitsu opened this issue May 23, 2023 · 6 comments

Comments

@appjitsu
Copy link

Great project! A lot of work went into this.

  • Why not use the new app directory?
  • Why not use a tailwind ui library like Chakra? The problem with base tailwind is the tsx can be too crowded with tailwind classes.
@bmstefanski
Copy link
Member

bmstefanski commented May 23, 2023

Hi, thanks, great questions!

Why not use the new app directory?

This project allows you to use a new app directory and it is something that we recommend if you find benefits from using it, e.g. performance or technology debt. We only have one page here which is a very simple landing page, so we decided it doesn't matter if it's in Pages Router or App Directory Router, but since there are more and more requests for the app directory, I am sure we will move it very soon. It won't be a big change, but rather one file change.

Why not use a tailwind ui library like Chakra?

We worked with ChakraUI before the first stable version was released and it is indeed great and helps a lot, but the overhead that it introduces when it comes to the bundle size and the overall performance is something that moved us in the direction of ditching it from most of the projects. It doesn't support tailwind, so that's another drawback and it is not as accessible as Radix UI for example - which is also easier to style.

The problem with base tailwind is the tsx can be too crowded with tailwind classes.

This is a great point and honestly, this is why I didn't like Tailwind for the past 2 years, but after working with it for quite a while I figured that the lack of SoC between markup and styles doesn't make any negative difference in development time or DX. This might be to the fact that we always use cva.style to separate more generic components and make them a part of design system

The lack of SoC was also a big drawback of React when it was first released and now, a few years later, it is doing great in extremely big and advanced projects even though it still mixes app the state layer with the markup layer. It helps deliver business value really fast and good and also has great DX - just like Tailwind! :)

Thanks and all best!

@bmstefanski bmstefanski pinned this issue May 23, 2023
@bmstefanski bmstefanski changed the title Questions App Dir & Tailwind SoC questions May 23, 2023
@appjitsu
Copy link
Author

appjitsu commented May 23, 2023 via email

@0xRowdy
Copy link

0xRowdy commented Jun 1, 2023

One more question.
Why did you decide to stick with yarn instead of pnpm?

@bmstefanski
Copy link
Member

@0xRowdy

One more question.
Why did you decide to stick with yarn instead of pnpm?

Yarn is battle-tested and still fast (not as fast as pnpm, but good enough), its main drawback is that it takes a lot of disk space, but that's not a worry for most projects. I personally like pnpm and use it in smaller/personal projects, but using it with mono repo tools like Turborepo or lerna can really be hard or even impossible sometimes because of its immaturity.

So to sum it up: having a mature package manager that will work with every library and tool was more important than speed benefits.

@rharkor
Copy link

rharkor commented Aug 11, 2023

Great project! A lot of work went into this.

  • Why not use the new app directory?
  • Why not use a tailwind ui library like Chakra? The problem with base tailwind is the tsx can be too crowded with tailwind classes.

Hy @appjitsu , I've forked this project and included a lot of cool features like the app directory, shadcn components, authentication and more. If you want to give a look https://github.com/rharkor/next-boilerplate

@bmstefanski
Copy link
Member

Updated to app directory, closing.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

4 participants