Database

How to create a nodejs mongodb rest api and test with postman

nodejs_mongo rest api featured image

Last updated:22nd March, 2021Nodejs mongodb rest api Representational State Transfer or RESTful web services are based on REST architecture. Using RESTful web services, clients can access resources on a server. Previously restful web services in codeigniter, and  SOAP based web services in php were discussed in detail. In this tutorial you are going to learn how to create a nodejs mongodb rest …

Read More »

How to generate pdf using nodejs, express and mysql with pdfkit

Last updated:9th March, 2019Generate pdf using nodejs In dynamic web applications developers often need to export data in pdf, csv, rss or xml formats. NodeJS have many libraries and modules that are used to produce such kind of output. A previous tutorial explored how to zip and unzip files using nodejs. In this tutorial you are going to learn how to generate …

Read More »

How to create RESTful web services in codeigniter

restful web services in codeigniter

Last updated:24th April, 2021RESTful web services in codeigniter RESTful web services are a way of communication among computer systems. REST services are based on REST architecture. World wide web has resources like images, videos, web pages and other business information. Web service clients use URIs to request these resources. Response to the web service request can be in JSON, HTML, …

Read More »

How to generate RSS Feed using NodeJS and MySQL

generate rss feed using nodejs

Last updated:9th March, 2019Generate RSS Feed using NodeJS RSS (Rich Site Summary) is a way of delivering dynamically changing content. RSS is used to share information on internet mostly by blogs, news sites and publishers. In a previous tutorial we discussed how to generate xml using node js. In this tutorial you are going to learn how to generate RSS …

Read More »

Generate XML with NodeJS and MySQL using XML builder

generate xml with nodejs

Last updated:9th March, 2019How to generate XML with NodeJS XML is a popular information exchange and storage format on internet. XML is used in web services, RSS Feeds and many other technologies. In a previous tutorial we discussed How to parse XML using NodeJS, this article explains how to generate XML with NodeJS and MySQL. To access data from MySQL Node …

Read More »

How to create web services in php using NuSOAP library

web services in php

Last updated:27th May, 2020How to create web services in php Web services are software available on internet. They can communicate and provide information to client programs based on XML messaging. In this tutorial we are going to learn about how to create web services in php using NuSOAP. We will also look in to the basics of web services, SOAP …

Read More »

php mongodb tutorial – find, insert, update and delete records

php-mongodb-example

Last updated:12th January, 2019php mongodb tutorial Mongodb is very popular open source, document based NoSQL database. In a previous NodeJS mongodb tutorial we explored how to perform CRUD operations on mongdb  database using nodejs. In this php mongodb tutorial you will learn how to fetch, insert, edit, delete records in a mongodb collection  using php. In this article following tasks are …

Read More »

Nodejs mongodb tutorial – find, insert, update, delete records

node-mongodb tutorial

Last updated:22nd March, 2021Nodejs MongoDB tutorial Web development field has evolved a lot in last decade. NodeJS became widely popular among web development community. It is a popular open source platform used for development of web and network-centric applications. In a previous article NodeJS with MySQL was explained. This nodejs MongoDB tutorial explores how to select, insert, update and delete records …

Read More »