endalk200
endalk200
TTCTheo's Typesafe Cult
Created by Amos on 11/24/2022 in #questions
Sentry with Next.js in an Nx monorepo?
It is opinionated a little bit though
12 replies
TTCTheo's Typesafe Cult
Created by Amos on 11/24/2022 in #questions
Sentry with Next.js in an Nx monorepo?
Yeah your right. It is not suited for to get started quickly. I didn't ran into that issue though. If you have an architecture in mind you can set it up quickly.
12 replies
TTCTheo's Typesafe Cult
Created by Amos on 11/24/2022 in #questions
Sentry with Next.js in an Nx monorepo?
If your working on large codebase it is the go to.
12 replies
TTCTheo's Typesafe Cult
Created by Amos on 11/24/2022 in #questions
Sentry with Next.js in an Nx monorepo?
I prefer NX. It has huge community and plugin support.
12 replies
TTCTheo's Typesafe Cult
Created by Amos on 11/24/2022 in #questions
Sentry with Next.js in an Nx monorepo?
Yes. I have.
12 replies
TTCTheo's Typesafe Cult
Created by endalk200 on 5/1/2023 in #questions
Code architecture best practices for large codebases in the context of t3 stack
11 replies
TTCTheo's Typesafe Cult
Created by endalk200 on 5/1/2023 in #questions
Code architecture best practices for large codebases in the context of t3 stack
11 replies
TTCTheo's Typesafe Cult
Created by endalk200 on 5/1/2023 in #questions
Code architecture best practices for large codebases in the context of t3 stack
I'm asking for your thoughts. I think code organization and architecture is something we all want to get right but you will produce crappy once first.
11 replies
TTCTheo's Typesafe Cult
Created by endalk200 on 5/1/2023 in #questions
Code architecture best practices for large codebases in the context of t3 stack
It is just an example. You can imagine whatever app you want. internal dashboard or ...
11 replies
TTCTheo's Typesafe Cult
Created by endalk200 on 5/1/2023 in #questions
Code architecture best practices for large codebases in the context of t3 stack
Don't look at it from the context of small apps. Imagine you have huge codebase with multiple engineers working on it.
11 replies
TTCTheo's Typesafe Cult
Created by ahkhanjani on 3/24/2023 in #questions
Why use Turborepo over Nx
. ├── apps/ │ ├── nextjs-app │ ├── mobile-app │ ├── docs site │ └── ... └── libs/ ├── shared/ │ ├── data-layer/ │ │ └── libs... │ ├── feature-layer / │ │ └── libs... │ └── ui-layer/ │ └── libs... ├── nextjs-app/ │ ├── data-layer/ │ │ └── libs... │ ├── feature-layer/ │ │ └── libs... │ └── ui-layer/ │ └── libs... └── mobile-app/ ├── data-layer/ │ └── libs... ├── feature-layer/ │ └── libs... └── ui-layer/ └── libs... ```
16 replies
TTCTheo's Typesafe Cult
Created by ahkhanjani on 3/24/2023 in #questions
Why use Turborepo over Nx
feature layer brings those together. That increased our onboarding process and productivity in our codebase.
16 replies
TTCTheo's Typesafe Cult
Created by ahkhanjani on 3/24/2023 in #questions
Why use Turborepo over Nx
Let's say you have feature a in your app and for that feature you need to write presentational UI components (ui-layer), data layer like fetching data for validation or any busing logic (data layer).
16 replies
TTCTheo's Typesafe Cult
Created by ahkhanjani on 3/24/2023 in #questions
Why use Turborepo over Nx
A library that contains a code that implements specific feature.
16 replies
TTCTheo's Typesafe Cult
Created by ahkhanjani on 3/24/2023 in #questions
Why use Turborepo over Nx
I think of the t3 community is pulling the stack to two different ends one for simple projects with little dependencies and complexity. The other for larger codebases where you have many applications.
16 replies
TTCTheo's Typesafe Cult
Created by ahkhanjani on 3/24/2023 in #questions
Why use Turborepo over Nx
Exactly.
16 replies
TTCTheo's Typesafe Cult
Created by ahkhanjani on 3/24/2023 in #questions
Why use Turborepo over Nx
Something like this
16 replies
TTCTheo's Typesafe Cult
Created by ahkhanjani on 3/24/2023 in #questions
Why use Turborepo over Nx
. ├── apps/ │ ├── nextjs-app │ ├── mobile-app │ ├── docs site │ └── ... └── libs/ ├── shared/ │ ├── data-layer/ │ │ └── libs... │ ├── feature-layer / │ │ └── libs... │ └── ui-layer/ │ └── libs... ├── nextjs-app/ │ ├── data-layer/ │ │ └── libs... │ ├── feature-layer/ │ │ └── libs... │ └── ui-layer/ │ └── libs... └── mobile-app/ ├── data-layer/ │ └── libs... ├── feature-layer/ │ └── libs... └── ui-layer/ └── libs...
16 replies
TTCTheo's Typesafe Cult
Created by ahkhanjani on 3/24/2023 in #questions
Why use Turborepo over Nx
I regularly work in huge codebases and there is code architecture that we use internally that makes everything great to work in.
16 replies
TTCTheo's Typesafe Cult
Created by ahkhanjani on 3/24/2023 in #questions
Why use Turborepo over Nx
Not sure what the community is willing to try out though.
16 replies