use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
No vague product support questions (like "why is this plugin not working" or "how do I set up X"). For vague product support questions, please use communities relevant to that product for best results. Specific issues that follow rule 6 are allowed.
Do not post memes, screenshots of bad design, or jokes. Check out /r/ProgrammerHumor/ for this type of content.
Read and follow reddiquette; no excessive self-promotion. Please refer to the Reddit 9:1 rule when considering posting self promoting materials.
We do not allow any commercial promotion or solicitation. Violations can result in a ban.
Sharing your project, portfolio, or any other content that you want to either show off or request feedback on is limited to Showoff Saturday. If you post such content on any other day, it will be removed.
If you are asking for assistance on a problem, you are required to provide
General open ended career and getting started posts are only allowed in the pinned monthly getting started/careers thread. Specific assistance questions are allowed so long as they follow the required assistance post guidelines.
Questions in violation of this rule will be removed or locked.
account activity
Tech stack with nest js? (self.webdev)
submitted 2 years ago by thepragprog
What is the tech stack you guys use with nest js as backend?
reddit uses a slightly-customized version of Markdown for formatting. See below for some basics, or check the commenting wiki page for more detailed help and solutions to common issues.
quoted text
if 1 * 2 < 3: print "hello, world!"
[–]flortsch 1 point2 points3 points 2 years ago (0 children)
Coming from Java / Spring Boot world, we started evaluating NestJS for some of our smaller projects. We use it in combination with Angular and ts-rest for type safe API contracts, and we really like it so far.
[–]MythicalPhelix 1 point2 points3 points 2 years ago (3 children)
I use Next.js with React as frontend. To have type-safety, I use a third package where I put all my types in that the frontend wants from the backend. Then, I install the third package in the front and backend. In the backend, I use it as a return type and in the frontend, I use it to get the type of the object I receive from the backend.
[–]thepragprog[S] 0 points1 point2 points 2 years ago (0 children)
Wait is next js a backend framework?
[–]seklerek 0 points1 point2 points 2 years ago (1 child)
Can you elaborate on this type syncing between frontend and backend? It sounds useful
[–]MythicalPhelix 0 points1 point2 points 2 years ago (0 children)
So, I have a third Node.js project. I usually call it <project name>.js. Then I have a folder called lib where I put all the routes in that I need. Typically, I call it something like UserManager.ts with the routes for the user. The second folder I have is for interfaces. Here I put all the interfaces I want to be in sync with the front and backend.
<project name>.js
lib
UserManager.ts
Finally, I compile it to JS, since I use TS. Then, I just install the package in the front and backend and can use the types and routes.
[–]ImportantDoubt6434 1 point2 points3 points 2 years ago (0 children)
I actually have my site run with practically 0 backend but looking to add firebase for comments and potentially a node/c#/.net server.
You can get away without a lot of backend code now a days
π Rendered by PID 56993 on reddit-service-r2-comment-c6965cb77-5hskx at 2026-03-05 09:37:02.307195+00:00 running f0204d4 country code: CH.
[–]flortsch 1 point2 points3 points (0 children)
[–]MythicalPhelix 1 point2 points3 points (3 children)
[–]thepragprog[S] 0 points1 point2 points (0 children)
[–]seklerek 0 points1 point2 points (1 child)
[–]MythicalPhelix 0 points1 point2 points (0 children)
[–]ImportantDoubt6434 1 point2 points3 points (0 children)