DEV Community

Discussion on: Which technologies would you choose for your next web project?

Collapse
 
dploeger profile image
Dennis Ploeger

I'm currently testing out Nest for the backend and so far I really like it. I've always been a fan of the approach that Python's Flask uses: starting with a minimal core and adding everything else using pluggable extensions. So for example, Nest Core is basically Express with some sugar coating and if you need AAA, you can plug in mature libraries like Passport or Mongoose for Mongo DB access.

On top of that I use Vue for the frontend and really like it's simplicity.