Front and second line developers
In working with different software engineers, I've noticed that there are generally two types of developers.
I’m Loïc, a software engineer based in Lyon in France. I’m the creator of FoalTS, a full-featured Node.js framework for building web applications.
In working with different software engineers, I've noticed that there are generally two types of developers.
Passwords must never be stored in clear text in the database. If they were, attackers would be able to steal them if the database ever gets compromised. To avoid this, two actions are necessary to store a password securely: hashing and salting.
In my company, we use Docker and Docker Compose to run our Node.js services locally. Recently, I needed to configure and run the VSCode debugger on some of these services to debug a feature. There are a few things to know to achieve this, which I will share in this article with some basic examples.
This tutorial shows how to build a real-world application with React and Foal. It assumes that you have already read the guide How to build a Simple To-Do List and that you have a basic knowledge of React and Node.