Nodejs loopback restful api with authentication tutorial

nodejs loopback restful api tutorial

Spread the loveLast updated:17th September, 2018NodeJS loopback RESTful API Modern web and mobile apps often need to access backend servers using RESTful APIs. In this tutorial, you will learn to create a NodeJS loopback restful API with authentication. A bookstore API is created using Nodejs, MongoDB, and loopback. After that token based authenticated API is created. In a previous tutorial, we …

Read More »

nodejs authentication with json web tokens (jwt) and postman tutorial

nodejs authentication with jwt

Spread the loveLast updated:20th August, 2018Nodejs authentication with JWT JSON web tokens or JWT is a way of transferring data securely among servers. In a previous article, you have learned how to create a NodeJS HTTPS server and NodeJS REST API. In this nodejs authentication tutorial, you are going to create a restful API with JWT authentication. Following tasks are performed in this tutorial. …

Read More »

How to create nodejs https server on localhost using openssl

nodejs https server using openssl

Spread the loveLast updated:20th July, 2018Create nodejs https server HTTPS is a communication protocol, widely used in modern web applications. Web applications like shopping carts, social networks, and other portals etc, use HTTPS protocol to transfer secure information over the Internet. HTTPS uses TLS/SSL protocols. In a previous article, you learned Nodejs twitter login with passportjs. In this article, you will learn, …

Read More »

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 »