Nodejs twitter login script with expresjs and passportjs

Spread the loveLast updated:2nd June, 2018Create nodejs twitter login with PassportJS Nowadays modern web applications have social media login as an important feature. Instead of login using an email address, users prefer to sign in with popular social media sites like Facebook or Twitter. In a previous tutorial, NodeJS PassportJS Login was explored with passport local strategy. In this tutorial, you will …

Read More »

Nodejs file upload with mongodb – create a photo gallery using multer

Spread the loveLast updated:3rd March, 2021Nodejs file upload tutorial File upload is an important feature in modern day web applications. In some previous tutorials, Dynamic PHP photo gallery and CodeIgniter File Upload were explored in detail. This tutorial is about nodejs file upload with MongoDB using multer package. User uploads a photo with a caption to the server and is stored in a MongoDB database. …

Read More »

nodejs user registration tutorial with mongodb

Spread the loveLast updated:9th March, 2019nodejs user registration tutorial Many of our readers requested to publish a NodeJs user registration tutorial with MongoDB. In some previous NodeJs tutorials, we explored NodeJS PassportJS Login, NodeJS send email tutorial and many others. In this tutorial, you are going to learn nodejs user registration with MongoDB. You can find the source code of this tutorial on …

Read More »

Import CSV file using nodejs and mongodb with ExpressJS and Mongoose

nodejs import csv thumbnail

Spread the loveLast updated:9th March, 2019Import CSV file using nodejs and MongoDB CSV or comma separated files are often used to export or import data in web applications. Generating CSV using Nodejs and MongoDB was explored in a previous article. In this tutorial,  you learn, how to import CSV file using NodeJS into MongoDB. In order to import CSV file using Nodejs and …

Read More »

NodeJS send email tutorial with MySQL and nodemailer

nodejs_send-email-tutorial-thumbnail

Spread the loveLast updated:2nd October, 2022NodeJS send email tutorial Sending emails to users is an important feature in modern web applications. In a previous tutorial we explored how to create a dynamic photo gallery using PHP. This tutorial explores nodeJS send email using NodeMailer. Suppose you are working on a NodeJS MySQL web application that needs to send emails to subscribers. …

Read More »

How to create a dynamic php photo gallery with GD library

php-logo-dynamic php photo gallery

Spread the loveLast updated:21st November, 2020Dynamic php photo gallery PHP GD library can be used to manipulate images. Often in web applications, you need to generate dynamic thumbnails of large images, where cropping each image is a tedious task. PHP GD library has many great features. In the last article, you learned, how to watermark images using PHP, in this article you …

Read More »

How to watermark images using php GD library

watermark images using php - featured image

Spread the loveLast updated:28th May, 2020How to watermark images using php PHP GD library has very cool features to manipulate images. Images can be resized, cropped, rotated or watermarked. In several web applications, you need to add dynamic images or add a watermark to images.  In a previous tutorial we explored how to manipulate images using gd library and watermark images …

Read More »

How to generate CSV using nodejs and mongodb with mongoose

featured image - generate csv using nodejs mongodb

Spread the loveLast updated:27th May, 2020Generate CSV using nodejs In modern web applications you can save and export data in different formats like pdf or xml. Exporting data in web applications in CSV or Comma Separated Values format is a popular technique used by web developers now a days. In this tutorial you are going to learn how to generate CSV using nodejs …

Read More »