-
In the last year I did a lot of job interviews for frontend developers. Normally I ask to write a some codes, using some site like https://codesandbox.io or site with limited functionalities like https://www.onlinegdb.com/online_java_compiler
Because I am a Java hard-core sw-architect, my ReactJS questions are rather easy.
Read More -
I am studying a bit of Reactjs because I got excited with Next.js.
After reading the basic tutorial, I got a bit disappointed on how to manage forms: cit
ing react doucmentation “form elements naturally keep some internal state”. So the tutorial seems to suggest an approach to keep in sync the form state with the react state object. This article cast some lights on the two ways to manage forms in reactjs: and explain the Controlled and Uncontrolled options you have.
Read More -
I was trying to explore a way to build a client/server application in Typescript; after some failed experiments, I found something better: Next.js offer the ability to build a React application and to render server-side its dynamic components.
So you can have the best of the two words: static pre-rendered pages pushed to the browser, and server side components (for doing your overwhelming BORING queries you know :)
Read More