Express + TypeScript + Mongo – Part 4 – Swagger
If you’re building a fairly large API you’re going to want to document it so the consumers know what to expect. There are several ways to do this. The most common way is to...
If you’re building a fairly large API you’re going to want to document it so the consumers know what to expect. There are several ways to do this. The most common way is to...
In the previous articles of this series, we rebuilt the original “ToDo server” application in TypeScript and used Mongo instead of MySQL. In this article, we’ll explore changing the server a bit more by...
I recently had an issue with my installation of Visual Studio Code where Intellisense wasn’t working properly for my TypeScript projects. All of the suggestions I found on StackOverflow or random blogs pointed to...
In the previous article, we got our Express project setup and our endpoints defined. In this article, we’ll connect it to an existing Mongo server. The first thing you’ll need to do is install...
About a year ago, I wrote a series where I showed how to create a very simple “To Do” client and server application. The server was written in Java and used JEE and MySQL....