Posts

Restful API using Spring Boot

Image
Restful API using Spring Boot Nowadays Rest API is very popular concept which used when building web applications. In Rest API we can do PUT, POST, GET, DELETE requests to perform CRUD operations. Spring boot provides ability to do the implementation for Rest API. In Spring Boot we are using Maven as build tool and it is useful when installing plugins and libraries maven uses maven repository to install them.  Initialize Spring Boot Project. Database configurations. Create Database tables in MySql. Create an Entity Class. Create Data Repository and Rest Controllers. Build and run the Project. Create the Spring Boot Project It is very easy to initialize a spring boot using start.spring.io. we only have to do is provide project details like group id, artifact id, description, version and more importantly dependencies which we are going to use in runtime or for implementation. For this we are using mysql so we are adding MySql, JPA and Web as dependencies....

RESTful APIs using NodeJS, ExpressJS, and MS SQL Server

Image
RESTful APIs using NodeJS, ExpressJS, and MS SQL Server REST (REpresentational State Transfer) is an architectural style for developing web services that uses HTTP. REST server provides access to resource and REST client modifies the resources. REST is popular due to its simplicity. REST uses different representation methods to represent resources like JSON, XML and text but most popular one is JSON. Advantages of Restful services Language independent architectural style simple reliable scalable implementation is easy NodeJS is a very popular and powerful JavaScript framework. we can develop attractive web applications like video streaming sites, single page web applications, etc. And Node is open source. Advantages of  NodeJS Easy implementation Lightweight, fast and scalable streaming capability high performance real-time web applications Community friendly ExpressJS is also written in JavaScript and it is also open source. We can use Exp...

Full Stack Web Development

Image
Full Stack Web Development Be a Full stack developer is not easy because if you want to be a full stack developer, you should know all the development technologies that need to build a web application. There are 3 types of development, Front-end Development - The components that you can see when visit the web application. Back-end Development - All the operation that working under those components (Ex: Databases, Structure, Server requests)   Full Stack Development - Combination of  both Front-end and Back-end Full stack developer should know how all things get fixed at last phase. There are many ways to be a full stack developer. The basic start up for that path is HTML and CSS because without good knowledge of those it is very hard to be a good full stack developer. There are many frameworks and tools that you should know and it will explained later. Full Stack development is very trending career path on these days. Be a Full stack developer not e...

Start React-Native from Development Environment Setting Up

Image
Start React-Native from Development Environment  Setting Up Youtube.com - React-Native Introduction Step 1: - Install IDE for coding Step 2:- Install Android Studio Step 3:- Optional - Install GenyMotion (Emulator) Step 4:- Install NodeJs Step 5:- Install React Native Step 6:- Creating new React Native Application Tools for Setup the Development Environment,     1) Visual Studio Code     2) Android Studio     3) GenyMotion Above steps will explain you how to make successful Cross-platform application development setup called React native. It is little bit of challenging but following steps will make that easy. Step 1:- Install IDE for Coding  You need to download and install a proper IDE to do the React native coding. I recommend Visual Studio code to use as the default IDE. Follow below link to download and install the visual studio code.  https://code.visualstudio.com/download Step 2:- Install Android Studio We ...