File upload drag and drop
In this tutorial, we will be implementing file upload via drag and drop in our frontend using the FilePond library. For those unfamiliar with FilePond, it is a JavaScript library that brings silky smooth drag n’ drop functionality to our frontend without having to deal with all the complexities. So let’s get started, shall we? Before […]
Nodejs MySQL with Sequelize
In this tutorial, we will be looking at how easily we can perform CRUD operations in nodejs using Sequelize in databases like Postgres, MySQL, MariaDB, SQLite, DB2, and Microsoft SQL Server. In this case, we will be using MySQL as a database. Before we start coding let’s firstly understand what we are going to build. […]
Make money as a web3 developer
Today, we will discuss some of the tried and tested ways to make money online as a web3 developer. Be a web3 freelancer Freelancing is one of the best options a web3 developer can choose to make money. There is a very high demand for talent in the blockchain industry compared to the supply as […]
Web3 development for beginners
The demand for web3 developers is growing day by day and has become a very lucrative career for a developer. In this tutorial, we will learn how we can very easily get started with web3 development as a frontend developer using an in-depth example using metamask. So let’s get started. Intro to web3 Web3 short […]
Use stripe subscription in nodejs application
In this tutorial, we will be looking at how we can implement a basic Stripe subscription in a nodejs application. Stripe, as most of us, are already aware it is a popular payment processing service for e-commerce websites and applications, and today we will be utilizing it to build a basic app that will allow […]
Docker compose nodejs app
In this tutorial, we will be looking at how we can use docker-compose to deploy a nodejs MongoDB app. Now, for those who aren’t familiar with Docker, it is an open platform for developing, shipping, and running applications. In simple words, it enables us to separate our applications from our infrastructure so that we can […]
Promises in javascript for beginners
In this tutorial, we will be looking at Promises in Javascript. Let’s firstly understand, what promises are. Promises are an alternative to callbacks for delivering the result of an asynchronous operation. It allows users to perform asynchronous operations very effectively and seamlessly
Nodejs API best practices
In this tutorial, we will be looking at some of the nodejs API best practices that we should be keeping in mind while building our Nodejs REST API. Our main focus in this post will be to make our API secure, scalable, and optimized. So let’s get started, shall we? Handle errors gracefully One of […]
Telegram crypto price bot in nodejs
In this tutorial, we will be building a telegram crypto price bot that will let us check the Price difference of a token between the Binance and Kucoin exchange. So let’s get started, shall we? Generate Binance API Key For generating the Binance API key we need to Signup for a Binance account and turn […]