NodeJS

RESTful API with sails js using MongoDB and MySQL

nidejs mvc frameworks with mysql and mongodb

Last updated:10th November, 2021RESTful API with sails js using MongoDB and MySQL Sails.js is a MVC (Model-View-Controller) framework built on top of Express framework. It is used to develop RESTful APIs and modern web applications. There are other Node js frameworks, like hapi, loopback but sails js is becoming very popular now a days. In a previous tutorial we created …

Read More »

How to create a restful api using nodejs and hapi framework

nodejs hapi framework tutorial - thumbnail

Last updated:27th May, 2020How 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 »

How to send sms using nodejs with jquery ajax and nexmo Api

send sms using nodejs - thumbnail

Last updated:7th May, 2021How to send SMS using nodejs Nowadays web applications send the SMS text messages to users for authentication, to reset a password or to verify a user’s mobile number. There are many services available to send SMS on the user’s mobile phone. In this tutorial, Nexmo service is used to send SMS using nodejs. Following tasks are …

Read More »

How to create a weather app in nodejs using Open Weather Map API

weather app in nodejs - code

Last updated:22nd March, 2021How to create a weather app in nodejs Nowadays there are many web services that provide the latest weather updates. Open Weather Map is a widely used API by developers. In this tutorial, you are going to create a weather app in NodeJS. A user enters a city name and clicks the Fetch Weather button, weather data returned from Open …

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 authentication with json web tokens (jwt) and postman tutorial

nodejs authentication with jwt

Last 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. Install NodeJS …

Read More »

How to create nodejs https server on localhost using openssl

nodejs https server using openssl

Last 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, how to …

Read More »