Welcome to my blog! I write about programming computers and also humans, because getting better in life is all about programming. Enjoy your reading and don’t forget to share, because sharing is caring!
- Setting Up GraphQL Server as gRPC ClientLet’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.
- Using gRPC For Connecting MicroservicesThis time, I want to share about creating Node.js microservices project using gRPC as the method of communication between the services.
- Congratulations, You Made It to 2021 !Happy new year! I’ll keep on writing but not as much because I think I will be busy with other things, and thank you for supporting!
- How to Implement GraphQL in Microservices Using Node.js – Part 4The fourth part of “How to Implement GraphQL in Microservices Using Node.js”. I will share about implementing authentication in GraphQL.
- How to Implement GraphQL in Microservices Using Node.js – Part 3The third part of “How to Implement GraphQL in Microservices Using Node.js”. I will share about GraphQL mutation operations here.
- How to Implement GraphQL in Microservices Using Node.js – Part 2The second part of “How to Implement GraphQL in Microservices Using Node.js”. I will share about GraphQL query operations here.
- How to Implement GraphQL in Microservices Using Node.js – Part 1In 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.
- My Random Theory of RealityIt has been a while since I publish something new. I need to jumpstart my writing habit again. So, I want to take it easy for myself and write whatever that comes to my mind.
- How to Create REST API Using Node.js – Part 5The 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.
- How to Create REST API Using Node.js – Part 4Part 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.
- How to Create REST API Using Node.js – Part 3Part 3 of “How to Create REST API Using Node.js”. In this part, I will share about implementing a simple cache using Redis.
- How to Create REST API Using Node.js – Part 2In this second part of REST API series, I will share about implementing MongoDB to the API routes created from the previous post.
- How to Create REST API Using Node.js – Part 1In this multiple posts series, I will share about creating a simple REST API using Node.js and Express. The good news is
- Generator Functions in JavaScriptHave you ever heard of generator functions in JavaScript? In this post, I share about generator functions and how to implement them.
- Object Destructuring Tricks in JavaScriptObject 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!
- Coding Style: Imperative vs DeclarativeWhat is the difference between imperative and declarative coding style? Which style do you prefer on your job?
- Handling Errors in Asynchronous FunctionsHandling 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.
- How to Improve Work ProductivityI just read Smarter, Faster, Better by Charles Duhigg, and I’d like to share some key ideas and insights from the book. Here’s what I learn…
- Understanding Asynchronous FunctionsWhether you realize it or not, asynchronous functions have been a part of our daily life, in the programs and apps we use. In this post, I would like to share on how to implement asynchronous functions in JavaScript.
- What Is Promise Chaining?Promise chaining is a way to execute codes by calling then() successively after an asynchronous code is executed successfully. Read more to find out.