Posts for Md Niaz Rahman Khan

Niaz is a professional full-stack developer as well as a thinker, problem-solver, and writer. He loves to share his experience with his writings.

How to use enum in GoLang

In this article, you are going to learn about how to use enum in the Go language. Enum refers to the term as a special data type that contains a set of predefined constants. It is also known as an enumerator. Enums are used widely and very powerful but like some other programming languages, the […]

January 18, 2022 in Code examples & GoLang

How to copy file in NodeJS

In this article, you are going to learn about how to copy a file in NodeJS. NodeJS is an open-source JavaScript runtime built on the Chrome V8 engine for executing JavaScript code on the server-side. It is very fast and highly scalable with extensive large community support. You may perform different actions with the help of […]

January 17, 2022 in Code examples & Node