In this tutorial, I will be telling you about sending e-mails with JavaScript.
We will learn how to send mail using Simple Mail Transfer Protocol which is a free JavaScript library. It is basically used to send emails, so it only works for outgoing emails. To be able to send emails, you need to provide the correct SMTP server when you set up your email client. Most of the internet systems use SMTP as a method to transfer mail from one user to another. It is a push protocol. In order to use SMTP, you need to configure your Gmail. …
I will teach you how to scrape content from a dynamic website and make your own API.
Environment — WINDOWS
In this tutorial, we’ll learn how to:
1. Set up a Node.JS Server (with Express)
2. Scrape the internet for the data that we want
3. Extract the information and format it for the user
4. Expose it using a RESTful API that can be consumed by other applications
5. Deploy it on Heroku
6. Resolve CORS-Issue
Alright, so first and foremost, we’ll need the base server that runs the entire system. If you haven’t already guessed it, it’s Node.JS.
But before that, let’s sync up with the bare necessities:
1. VS Code(code editor)
2. …
About