nodejs

11 Articles 0 Followers


How to Connect to Bitcoin Cash (BCH) Node

31 Aug 2022 1 minute read 1 comment GetBlock

It’s GetBlock — a top-tier blockchain nodes provider — , and now we are going to experiment with Bitcoin Cash, a most popular Bitcoin fork. Bitcoin Cash blockchain and its BCH tokens were created to address the most dangerous bottleneck of Bitcoin, i...

How to Automate Your Wax Actions: The Basics

8 Feb 2024 4 minute read 0 comments RadicalCore

Have you ever wondered how to automate some tasks you do daily on WAX? For example, after voting, you may be familiar with going to MyCloudWallet.com,  logging on, clicking the Staking link and Claiming GBM Rewards (voting rewards). But what if there...

Using pnpm as the package manager in nodejs projects

20 Apr 2023 2 minute read 0 comments Bala

I have been slowly switching to pnpm as my default package manager. The main reason is that it is fast and consumes only less space. It manages the node_modules folder very well I think. I have also been working on converting my nodejs projects to a...

Downsides of NPM package manager

8 Apr 2023 3 minute read 3 comments Bala

NPM is the most popular and primary package manager for Node.js. In fact, we can even say that every developer when they start learning nodejs, they have to also learn about npm package manager. They start with npm and maybe gradually switch to other...

How To Connect to Litecoin Node via GetBlock

12 Oct 2022 2 minute read 0 comments GetBlock

Hello, it’s GetBlock. Today, we are going to show you what is going on when our clients are getting connected to Litecoin, one of the earliest Bitcoin (BTC) forks and large Proof-of-Work network. Although Litecoin doesn’t support smart contracts, its...

👉 REST API vs GRAPHQL , which one is better? 🤔

6 Jun 2022 2 minute read 0 comments rohandevaki

🙋‍♂️ Hi guys , I always had a small doubt when I heard there are more than one API, I heard about GRAPHQL, and REST, so I got a doubt that which one should I use and which one is better to use. 👉In this post, I would like to give a brief on which i...

Top 5 common and useful libraries for Node.js developers

8 Oct 2021 2 minute read 0 comments Bala

I would like to say that the best thing that happened in my career was to know that it was possible to write Javascript code in the backend and run backend service completely with Javascript. Thanks to the v8 javascript engine and thanks to the Node...

Desktop application with Electron

9 Jan 2021 2 minute read 0 comments T89

Today we tolk about Electron, that is a fantastic framework that allows you to create desktop applications with Javascript, HTML and CSS. You can use Typescript and other framewrok like Angular, React or Vue.js. You can create a single dasktop applic...

How to resolve Puppeteer dependencies like error while loading shared libraries: libgtk-3.so.0

23 Oct 2020 1 minute read 1 comment R0bin

One fine day I had to leave my already somewhat dusty development environment on an older Ubuntu distribution. On a freshly installed Ubuntu 20 server I wanted to continue my development work with NodeJS and Puppeteer. But before that, some dependenc...

What is node.js

28 Mar 2020 1 minute read 1 comment 0xgult

node.js is a Javascript runtime built on Chrome's V8 Javascript engine. node.js is NOT a programming language!node.js IS a runtime! If you know Java, a simple analogy to understand this is node.js is similar to the Java Runtime Environment and the V8...