Tutorials

RESTful API Using Node.js and Express.js

REST stands for REpresentational State Transfer. REST is a web standards-based architecture and uses HTTP Protocol. REST services address components as resources and are accessed by a common interface using HTTP standard methods. RESTful is the web service implementation of REST software architecture. In this tutorial, I am going to explain how to build RESTful […]

RESTful API Using Node.js and Express.js Read More »

How to Connect to the Ethereum Network using Python and Web3

Introduction In order to build a decentralized application, we need to connect to the Ethereum (or other) blockchain. In this tutorial, we are going to learn how to connect to the Ethereum blockchain using Python and Web3. Prerequisite Ethereum test net node ( we’ll use Infura.io for same) Python version >=3.5.3 and Pip3 Web3.py installed

How to Connect to the Ethereum Network using Python and Web3 Read More »

Continuous Integration and deployment (CI/CD Pipeline) with Jenkins and Node.js

Write code, test and deploy This is one of the common development cycles of any developer. Most of the time testing and deployment steps do not change frequently and in order to keep the developer focus on writing code, we do the automation of testing and deployment. This automation is called “continuous integration and deployment”

Continuous Integration and deployment (CI/CD Pipeline) with Jenkins and Node.js Read More »