Configure PHP 7.3.5 and MongoDB 4.0.10

Introduction In this post I will show you how to configure PHP 7.3.5 and MongoDB 4.0.10 in Windows operating system. In my previous tutorial I had shown how to configure PHP 7.2.1 and MongoDB 3.6.4.

Angular + Spring Boot MongoDB CRUD Example

Introduction In this post we will create Angular + Spring Boot MongoDB CRUD Example. In my previous tutorial on Spring Boot MongoDB CRUD Example, we did not have any UI or front-end, so we had to test out application using REST client but here we will use Angular on front-end side so that we can easily make this application as…

Angular + Python Flask REST API MongoDB CRUD Example

Introduction In this post we will see Angualr + Python Flask REST API MongoDB CRUD Example. We will use our existing tutorial on Python Flask REST API MongoDB CRUD Example for server side and we will introduce Angular on UI or front end side. You can also use any UI technologies, such as React JS, HTML, JavaScript, jQuery etc., for front end…

Spring Boot MongoDB CRUD Example

Spring Mongo CRUD Here you will see a post on Spring Boot MongoDB CRUD example, where CRUD means Create, Read, Update, and Delete operations. For performing CRUD operations on MongoDB through Spring Boot framework, you need to add required dependency. I will use Spring REST controller to publish the MongoDB CRUD operations using REST or RESTful API. Related Posts:

Flask REST API MongoDB CRUD Example

Flast REST API Mongo CRUD In this post I will implement Python flask REST API MongoDB CRUD example, where CRUD means Create, Read, Update, and Delete operations. So I will perform these CRUD operations on MongoDB. I will create REST or RESTful API using Flask in Python. I need to install the required module Flask-PyMongo for connecting to MongoDB using…

Codeigniter Multi-Language Website

Introduction This post is about Codeigniter multi-language website, where user will have options to choose his/her own language for reading the text or information on the website. In this Codeigniter multi-language website, I will show how to change the text of the website in different locales or languages. I will use five different languages to make the website internationalization (i18n)….

Installing Zip Version Of MongoDB In Windows

MongoDB Here I will tell you how to install zip version of MongoDB in Windows environment. I will install here MongoDB Community edition. If you want to install MongoDB msi version then you can read Step 4 at https://roytuts.com/mongodb-php7-xampp-windows/. I will download latest MongoDB server and configure in Windows environment.

Wrap REST API with GraphQL in Spring Boot

Introduction This post will show you how to wrap REST API with GraphQL in Spring Boot framework. So here we will create a Java based GraphQL server. When you come to know that GraphQL has advantages over REST API and you want to start using GraphQL but you are stuck with legacy REST APIs, then this tutorial may help you…

Wrap REST API with GraphQL in Node.js

Introduction This post will show you how to wrap REST API with GraphQL. So here we will use graphql-yoga from NPM package to create GraphQL server. When you come to know that GraphQL has advantages over REST API and you want to start using GraphQL but you are stuck with legacy REST APIs. Then this tutorial may help you to wrap…

Spring Boot Data JPA CRUD Example

Spring Data JPA CRUD You will see here Spring Boot Data JPA CRUD example. CRUD is an acronym that means Create Read Update and Delete operations. I will use an in-memory h2 database in order to perform CRUD operations in database. I have other example on Spring Data JPA CRUD example but the application does not use Spring Boot. In…