Skip to main content

Posts

Showing posts with the label Software

Next js announced version 12, Whats new

Next js announced version 12. Next.js gives you the best developer experience  The React Framework for Production.  To be very honest it's mind-blowing considering it's just a free javascript framework and they're setting the bar really high for what a full stack javascript framework is expected to do. Next  js  now comes with a rust compiler instead of javascript to give you 5x faster builds. next makes it faster under the hood by replacing babel, because big complex apps tend to have slow build times. Middleware next js Middleware is not a new concept frameworks like express.js use middleware to intercept an http request and process it before it goes to actual route handler. next.js is little more complicated, where website to be really fast and the best way is to cache pre-built html pages on a cdn but the pages cannot be dynamic.  Server side rendering that uses a node to fetch data from a database or api when the incoming request comes in and it's...