Let’s make a GraphQL server we created before using Node.js to be a gRPC Client which connects to a gRPC server which data is in a mock DB.

Let’s make a GraphQL server we created before using Node.js to be a gRPC Client which connects to a gRPC server which data is in a mock DB.
This time, I want to share about creating Node.js microservices project using gRPC as the method of communication between the services.
In this first part of “How to Implement GraphQL in Microservices Using Node.js”, I will share about implementing GraphQL as a gateway to our microservices.
Part 4 of the “How to Create REST API Using Node.js”! In this post, I will share about improving the API security by adding JWT.
Part 3 of “How to Create REST API Using Node.js”. In this part, I will share about implementing a simple cache using Redis.
In this second part of REST API series, I will share about implementing MongoDB to the API routes created from the previous post.
In this multiple posts series, I will share about creating a simple REST API using Node.js and Express. The good news is
Have you ever heard of generator functions in JavaScript? In this post, I share about generator functions and how to implement them.
Object destructuring is a powerful feature in JavaScript ES6. It reduces the codes you need to write in JavaScript. In this post, I share some of the tricks in object destructuring, hope it helps!
Handling errors in your code is a must, to let users know that something is not right when they use your program. In this post, I share about handling the errors of asynchronous functions in JavaScript.