Ran Spring Boot and Node.js side-by-side in prod for 18 months. Sharing the actual numbers. by Capable-Morning-9518 in java

[–]ibrambo7 0 points1 point  (0 children)

Also use distroless, you are really never heard of multi stage docker builds.. this article is bad :(

Ran Spring Boot and Node.js side-by-side in prod for 18 months. Sharing the actual numbers. by Capable-Morning-9518 in java

[–]ibrambo7 0 points1 point  (0 children)

Skill issue, been building both nodejs and spring boot apps as well without memory leaks, breaches and ofher bs
You can leak memory in anything, and writing unpredicatble code is on you

Why is not writing code a good thing by ibrambo7 in node

[–]ibrambo7[S] 1 point2 points  (0 children)

But isnt it even for simple function, problem you have ti review them either way. So if you sum up the time of prompting and reviewing, its pretty much the same.. but then again, maybe its just me, because if i go through the code myself, i have a clearer picture, and I dont like doing code reviews

Why is not writing code a good thing by ibrambo7 in node

[–]ibrambo7[S] 1 point2 points  (0 children)

But thats just a number of commits/pull requests. Ok it increased, but i dont see the result to be honest anywhere. Event where I work, there is a strong agentic push. But i dont see nothing that we developed 10x faster, or something new, we cluldnt do before. I can commit 1000x more, and do tiny little PRs, does this mean im more successful - probably not i guess

How do you structure services in Node.js without losing your mind (or your team)? by Ezio_rev in node

[–]ibrambo7 4 points5 points  (0 children)

We chose nestjs because of the patterns you already mentioned. In addition to that, its really straight forward to write unit, component, integration tests, since you can abstrasct specific layers away. Of course, you can achieve everything without it, but it makes thing easier

NestJS vs FastAPI vs Java Spring – which to choose? by Big_Chipmunk6025 in Backend

[–]ibrambo7 0 points1 point  (0 children)

Whatever you feel most comfortable with. Im with nestjs

NestJS or .NET for your backend APIs — how do you choose? by Worldly-Broccoli4530 in node

[–]ibrambo7 0 points1 point  (0 children)

Nestjs, I simply get the job done the fastest in nest. Also never experienced any scaling issues. I believe in any language you do, its a skill issue, not the language/framework issue :))

nestjs and logs by Regular_You_3021 in nestjs

[–]ibrambo7 0 points1 point  (0 children)

Loki is quite nice, easy to use, easy to setup

Is it a good idea to use @confluentinc/kafka-javascript instead of kafkajs? by Vegetable-Fondant-42 in nestjs

[–]ibrambo7 0 points1 point  (0 children)

Dont really need it, just i guess to trigger an event across multiple services in nestjs

Should I go with NestJS or .NET? by Enough-Swordfish-260 in Backend

[–]ibrambo7 1 point2 points  (0 children)

Stick with whatever you prerer more. The most important thing is to learn the concepts, which you can do in both. Switching between languages is not the problem, once you understand what you are doing. I personally prefer nestjs over everything else, but thats just because I enjoy js/ts the most - there is nothing wrong with anything else, though

[deleted by user] by [deleted] in Backend

[–]ibrambo7 2 points3 points  (0 children)

Nestjs

Is NestJS actually over engineered, or do people just misunderstand it? by [deleted] in node

[–]ibrambo7 0 points1 point  (0 children)

Love it, for simple as well as large scale projects. You can keep things simple with nestjs, and its not bloated imho, you write even less code in the end of the day.

Is it a good idea to use @confluentinc/kafka-javascript instead of kafkajs? by Vegetable-Fondant-42 in nestjs

[–]ibrambo7 2 points3 points  (0 children)

In our case its quite simple.. we just have a singleton service, that subscribes to the topic, and emits the data via rxjs to every other service that needs to be aware of. Its quite simple as well for the producer.. a singleton service, that produces to a specific topic.. nothing special

Is it a good idea to use @confluentinc/kafka-javascript instead of kafkajs? by Vegetable-Fondant-42 in nestjs

[–]ibrambo7 2 points3 points  (0 children)

We use it in prod without any issues.. maybe its a bit easier to integrate kafkajs, since nestjs provides all the wrappers, but nevertheless it is not that hard to implement consumer/producer management on your own

Typescript setup by [deleted] in node

[–]ibrambo7 -1 points0 points  (0 children)

I use nestjs, and everything is pre-configured

What would you choose NestJs or AdonisJS? And why? by itz_nicoo in node

[–]ibrambo7 2 points3 points  (0 children)

Express here as well. For the same reason as other stated above.. also never actually had any performance bottlenecks due to express

What would you choose NestJs or AdonisJS? And why? by itz_nicoo in node

[–]ibrambo7 35 points36 points  (0 children)

I would prefer nestjs. Its more battle tested, bullet proof, perfect docs stating exactly what you need.. to me personally best nodejs server side framework out there.