Cookies are small text files that have non-executable content in them these are just to store user’s information that the application might want to recognize the user because HTTP is stateless you need these once set are sent subsequently with each request. Many server-side frameworks provide functionality on how to parse them and make there […]
Sending mails from node js web application
today we will be learning about how to Sending mails from node js. To make a simple website at first we need to initialize a simple express app we require express, path, body-parser, nodemailer. First we need to make install all of these modules with. we initialize express with var app = express(); than we […]