Arnaud Dostes·Apr 28, 2023Feature Flags in React Server Components with NextJS 13 and Split.ioReact Server Components are finally available in NextJS 13 when opting in the appDir experimental feature.A response icon1A response icon1
Arnaud Dostes·Mar 21, 2023Human or AI, which is the best coder?Over the last couple of months, the office has been abuzz with conversations of AI-generated code. Our slack was flooded with messages from…
Arnaud Dostes·May 20, 2022Sharing React Query across micro frontends with single-spa and webpack module federationIn this article, I will show how to setup multiple micro frontends using single-spa and module federation. Each micro frontend will be…A response icon1A response icon1
Arnaud Dostes·Oct 5, 2020Authoring a JavaScript library that works everywhere using RollupIn this article, we aim to create and publish a library that can be used, without any changes in the code, in both client side and server…A response icon3A response icon3
Arnaud Dostes·Sep 24, 2020You don’t need React to use JSXIn this article, we explain the new JSX Transform, and how to use JSX without React.A response icon1A response icon1
Arnaud Dostes·Aug 14, 2020Beware of “Algorithm Interview” articlesI received an email digest from a popular blogging platform which included after the first few serious and news worthy links some more…A response icon1A response icon1
Arnaud Dostes·Feb 15, 2020Using environment variables in a React applicationIn this article we’ll see how to use environment variables in a React application. Specifically, we’ll look at two kinds of environments…A response icon3A response icon3
Arnaud Dostes·Feb 8, 2020Adding GraphQL to a RESTful APIIn this article, we will build a simple REST api with Express. We will see its limitations and how we can improve it with GraphQL. At the…
Arnaud Dostes·Jan 27, 2020Adding a Redis cache to an Express appRedis is, according to its own website, “an open source (BSD licensed), in-memory data structure store, used as a database, cache and…A response icon2A response icon2
Arnaud Dostes·Jan 22, 2020Ternaries make code difficult to read and maintain.Let’s write a function that returns whether an integer is positive or negative. This can be simply and quickly written as is: