How to Update GitHub Personal Access Tokens?

Personal access tokens are an alternative to authenticate GitHub users without the need of using your password. If you have used a personal access token before, during the process of generating the token you noticed you could set an expiration date. Once the expiration date is past due, the token will no longer be valid … Read more

How to Set up Basic Node.js + Express.js Server with TypeScript

Note: This post is part of Learn How to Use TypeScript With Node.js and Express.js series. Click here to see the first post of the series. Getting Started First things first, we need to create the directory for our application: mkdir express-typescript Time to set up our package.json file where we can define all our … Read more