avatar

Jafar Rezaei

Fullstack Software Engineer

Articles by Jafar Rezaei

Talks by Jafar Rezaei

  • 3D Rendering in React

    Three.js is a powerful JavaScript library for creating and displaying 3D graphics in a web browser. It provides a wide range of features for creating 3D scenes, including support for lighting, cameras, and animations. With React Three Fiber, developers can use Three.js within React components, allowing them to create dynamic and interactive 3D scenes in their applications.

    Read more
  • React Server Components

    React Server Components is an experimental feature being developed by the React team at Facebook. It aims to allow developers to build components that can be rendered on the server and sent over the network to be hydrated on the client side. This approach is different from traditional client-side rendering, where the entire component tree is sent to the client and rendered there. The motivation behind React Server Components is to improve the performance of server-side rendering (SSR) by reducing the amount of JavaScript that needs to be sent to the client. With React Server Components, only the necessary components and data are transmitted, resulting in smaller and faster initial page loads.

    Read more