Tag: workfall

How to Build a Hybrid App using React Native?

Reading Time: 13 minutes There are over 6.5 billion smartphone users across the world and it is forecasted to further grow to 7.6 billion by 2027, as per Statista. It’s no surprise that the mobile app industry is growing very fast. Statista also reports that worldwide mobile application revenues have risen dramatically throughout the past two years from 255.5 […]

How to send customized emails by integrating SendGrid with a Node.js application?

Reading Time: 10 minutes Email is still one of the most popular forms of textual communication, particularly among corporations for notifications, outreach, etc. through their business product. SendGrid is one of the most widely used email APIs to integrate email services into business products. SendGrid makes it simple to send welcome emails, password reset emails, communication updates, and other […]

How to build and deploy dApps using Solidity Smart contract, WEB3.JS & React.JS?

Reading Time: 12 minutes Augur, OpenSea, PancakeSwap, etc. are all buzzwords that one might hear when we talk about blockchain technology. Why? 🤔 This is because they represent a novel way of interacting with personal finance. There are many dApps in the blockchain ecosystem that help individuals and companies conduct transactions for various reasons like the ones mentioned. Many […]

How to send Webhooks using Python and receive via Node.js Applications?

Reading Time: 9 minutes If you are a Facebook user, you are using Webhooks unknowingly 🙂 . For example, whenever your close friend posts something new or comments on your Facebook posts, there is an event that will take place and a post request will be created that will serve you with a notification stating that your friend has […]

How to connect to MySQL database and run CRUD operations in Node.js?

Reading Time: 8 minutes In this blog, we will have a look at getting started with the MySQL npm package which is a Node.js client for connecting to MySQL, written in JavaScript. We will see how to use the package to connect to a MySQL database and perform the CRUD operations. We will begin with creating a new directory […]

How to export data to a CSV file using multiple npm packages in Node.js?

Reading Time: 10 minutes Node.js is a single-threaded, open-source, cross-platform runtime environment treasured by developers for server-side and networking applications. And CSV format is one of the most widely used data interchange formats; it can be imported into any database and used in almost any other system. Moreover, it is backward compatible with everything. In this blog, we will […]

Go Modules for Package Management

Reading Time: 8 minutes Go 1.11 introduces Go modules for better package management that allows dependencies to be located outside of the $GOPATH/src folder. Package management is an essential key for every project set up to improve delivery time for developers. Programming languages like Python, Node.js, etc. have standard package managers which are used extensively by developers. These package […]

How to plot Bar Charts in Angular using npm package Highcharts?

Reading Time: 9 minutes Highcharts have been around since 2009 helping IT professionals, deep tech aficionados, and even recent graduates to present data in a user-friendly manner.  It is basically a complex word for charts used by developers while in the development stage of web applications. It comes with extensive documentation, high responsiveness, and industry-leading accessibility support. This blog […]

How to fetch contents of JSON files stored in Amazon S3 using Express.js and AWS SDK?

Reading Time: 12 minutes A plethora of banks employ JSON for data transfer between the bank and the client servers. With the help of Amazon S3 data lakes, the banks use the data to train AI/ML models and perform advanced analytics. JSON is an open standard file format and data interchange format that stores and transmits data objects composed […]

Back To Top