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
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 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.

Categories
Codes Javascript MongoDB Node.js Redis

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

In this multiple posts series, I will share about creating a simple REST API using Node.js and Express. The good news is

Categories
Codes Javascript

20 JavaScript Tricks You Might Not Know Yet

JavaScript is an ever evolving language that it gives the programmers some creativity to code more elegantly the more it updates. Here are some of the tricks you can apply.

Categories
Codes Git

Daily Git Commands You Should Know

In this post, I will share about some of the git commands I use daily. It has been part of my daily job as a programmer, and I hope these commands will be useful to you too, whether you want to use it daily or studying to pass a job interview.

Categories
Codes Javascript

New Exciting Features in JavaScript ES2020

ES2020 has already been finalized! In this post, I share some of the useful features we can already expect from the latest update in JavaScript.

Categories
Codes Javascript

JavaScript: var, let, const

What is the difference between var, let, and const in JavaScript? In this post, I will share about the difference in them, and recommendation on which to use.