DEV Community

Angelo Manganiello
Angelo Manganiello

Posted on

 

NHipster generator for full stack app with server nodejs framework and angular/react client

I want to share an useful project, spin-off of jhipster, that allow you to generate an app with security, entities from a model, for the server part (using NestJS framework like angular pattern) and client part (choosing angular or react). It is already published in npm registry, and if you want to contribute refers to: https://github.com/jhipster/generator-jhipster-nodejs .
Any feedbacks and issues are welcome!

Oldest comments (0)

An Animated Guide to Node.js Event Loop

Node.js doesnโ€™t stop from running other operations because of Libuv, a C++ library responsible for the event loop and asynchronously handling tasks such as network requests, DNS resolution, file system operations, data encryption, etc.

What happens under the hood when Node.js works on tasks such as database queries? We will explore it by following this piece of code step by step.