In this post, we are going to build a RESTful CRUD API with Deno, Oak and MongoDB as database. In the previous article, we discussed how to install deno in your local machine and start using Deno. If you haven’t read that article, please read the article below and install the deno first. Getting started with Deno, Your first app Hello Deno. Let's install Deno. Deno ships as a single executable with no dependencies. You can install it using the installers… blog.shashi.dev After installing the Deno, we will start building the restful crud api’s. We will use o ak microframework. Some of the other deno microframeworks are: abc deno-drash deno-express oak pogo servest In this article we will be using oak, which is inspired by koa. Setting up the project: Create a new directory called restful-api-deno mkdir restful-api-deno 2. After c r eating the directory just cd into the directory cd restful-api-deno 3. Create a new file server.ts and paste the followi...
Notes from a software engineer on technology, AI, developer productivity, side projects, and quantified self. Documenting ideas, experiments, and insights along the way.