Categories
Codes GraphQL gRPC Node.js

Setting Up GraphQL Server as gRPC Client

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.

Categories
Codes Node.js

Using gRPC For Connecting Microservices

This time, I want to share about creating Node.js microservices project using gRPC as the method of communication between the services.

Categories
GraphQL Node.js

How to Implement GraphQL in Microservices Using Node.js – Part 4

The fourth part of “How to Implement GraphQL in Microservices Using Node.js”. I will share about implementing authentication in GraphQL.

Categories
Codes GraphQL Node.js

How to Implement GraphQL in Microservices Using Node.js – Part 3

The third part of “How to Implement GraphQL in Microservices Using Node.js”. I will share about GraphQL mutation operations here.

Categories
Codes GraphQL Javascript Node.js

How to Implement GraphQL in Microservices Using Node.js – Part 2

The second part of “How to Implement GraphQL in Microservices Using Node.js”. I will share about GraphQL query operations here.

Categories
Codes Javascript Node.js

How to Implement GraphQL in Microservices Using Node.js – Part 1

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.

Categories
Codes Javascript Node.js

How to Create REST API Using Node.js – Part 5

The fifth part of “How to Create REST API Using Node.js” post series. In this post, we will do a refactor on the code we created on the previous posts.

Categories
Codes Javascript Node.js

How to Create REST API Using Node.js – Part 4

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.

Categories
Codes Javascript Node.js Redis

How to Create REST API Using Node.js – Part 3

Part 3 of “How to Create REST API Using Node.js”. In this part, I will share about implementing a simple cache using Redis.

Categories
Codes Javascript MongoDB Node.js

How to Create REST API Using Node.js – Part 2

In this second part of REST API series, I will share about implementing MongoDB to the API routes created from the previous post.