Tag: node

How to Deploy NestJS Microservices to AWS Elastic Beanstalk?

Reading Time: 7 minutes AWS Elastic Beanstalk is an AWS service on which you can deploy your application and it offers orchestration for various AWS services such as EC2, and S3 out of the box through auto-scaling, load-balancing, and capacity provisioning. All you have to do is upload your code and AWS Elastic Beanstalk does everything for you including […]

How to use AWS SSM Parameter Store in AWS Elastic Beanstalk instances?

Reading Time: 9 minutes Almost every developer makes use of environment variables. They are excellent for establishing parameters that alter depending on the system’s surroundings. Sadly, they struggle to scale. There are methods to accomplish it, but they aren’t enjoyable. Here’s why AWS can replace environment variables (or at least reduce your reliance on them). Building contemporary cloud apps […]

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 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