Thomas Deconinck
  • Blog
  • Labs
  • About
  • Github

Create a tag for a npm package

Thursday, February 17, 2022

Simple and short article about the tag creation for a npm module.

My latest articles

Monday, February 14, 2022

Handle versioning with semantic-release

When you have a npm package, it requires to provide a version number. It can be pretty tedious to edit it, that's why I tend to use a tool like semantic-release to automate this process.

Monday, February 14, 2022

Create an expo ReScript template

Let's discover together how can we create a custom expo template in order to quickly start mobile application development in ReScript.

Monday, February 14, 2022

Handle the navigation in a ReScript React app

ReScriptReact has his own navigation system that is pretty simple and performant. In that way, we can write our own "framework" to make our navigation type-safe.

Thursday, January 13, 2022

Decode an enumeration from an API in ReScript with decco

In a previous article, I talked to you about decco to decode API payload. Today, we will see how we decode an enumeration of string with this library.

Wednesday, January 12, 2022

Use a logger in a ReScript React application

Like many front-end developers, I already have forgotten by the past to remove my debugging logs until the production deployement done 😖.