Database

How to create a restful api using nodejs and hapi framework

nodejs hapi framework tutorial - thumbnail

Last updated:20th March, 2024How to create a restful api using nodejs and hapi framework Hapi framework is popular Nodejs framework. In this tutorial we are going to explore how to create a restful API using nodejs and hapi framework. In a previous Nodejs loopback restful api with authentication tutorial, loopback framework is used. Following tasks are performed in this tutorial. …

Read More »

nodejs redis tutorial

nodejs redis tutorial - thumbnail

Last updated:27th May, 2020Nodejs Redis Tutorial Redis stands for Remote Dictionary Server and it is a popular in-memory data store used in web applications like a database or cache. In this nodejs redis tutorial, you will learn to add, view, search and delete books data into Redis data store using nodejs redis cli module. Following tasks are performed in this …

Read More »

Nodejs loopback restful api with authentication tutorial

nodejs loopback restful api tutorial

Last 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 explored how …

Read More »

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

Last 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. Uploaded photos …

Read More »

nodejs user registration tutorial with mongodb

Last 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 this GitHub repository. …

Read More »

Import CSV file using nodejs and mongodb with ExpressJS and Mongoose

nodejs import csv thumbnail

Last 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 MongoDB, following …

Read More »

NodeJS send email tutorial with MySQL and nodemailer

nodejs_send-email-tutorial-thumbnail

Last 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.   Following …

Read More »

How to generate CSV using nodejs and mongodb with mongoose

featured image - generate csv using nodejs mongodb

Last 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 and mongodb. …

Read More »