Skip to main content

Posts

Showing posts from March, 2019

Maven - The Comprehensive Project Management Tool

Introduction to Maven Maven is basically a simple build automation tool used in Java projects. Maven is also defined as a comprehensive project management tool. It is intended to provide developers with a complete and detailed build lifecycle framework of the application. Maven also makes it easy for developers to check build status, generate reports (basically Javadoc), set up an automatic build process and monitor it. Maven makes it easy to compile, distribute, document, collaborate with different teams, and other important tasks on the source code. Maven aims to describe 2 important things : How software is built. The dependencies, plug-ins & profiles that the project is associated in a standalone or a distributed environment. The maven can also be used in building & managing the projects written using C#, ruby and other programming languages as well. Maven History Maven was originally designed and developed by a turbine project in Jakarta. At a late...

What? React?

Facebook's React has changed the way we think about Web application and user interface development. For that design, you can use it beyond the web. What makes this possible is a feature called Virtual DOM. This chapter explains some of the basic ideas behind the library. Therefore, please understand React a little more well before proceeding. Introduction to React React is a JavaScript library that aims to simplify the development of visual interfaces. Developed on Facebook and releas ed to the world in 2013, it drives some of the world's most widely used codes, running Facebook and Instagram among many other software companies. Its main purpose is to facilitate inferring about the interface and its state at any time by breaking up the UI into a collection of components. React is used to build single page web applications, along with many other libraries and frameworks that were available before React. Why is React so popular? React swept the front-end web dev...

What is GIT and It's Usage

Git is a distributed revision control and source code management system with a focus on speed. Git was originally designed and developed by Linus Torvalds for Linux kernel development. Git is free software distributed under the terms of the GNU General Public License version 2. Audience This article will help beginners learn the basic features of the Git version control system. After completing this tutorial, you will gain a moderate level of expertise in using the Git version control system, and you can move on to the next level. Prerequisites It assumes using Git to handle all levels of Java and non-Java projects. For this reason, it is a good idea to touch some practical knowledge of the software development life cycle and the development of web-based and non-web-based applications.