Contact Us
Get in touch and we’ll get back to you as soon as we can. We look forward to hearing from you! If you have any questions, or if you want to contact us or if...
About Us
Monkelite was started with the above mission in mind, to provide you with easy to understand and simple to implement Programming tutorials and new technologies updates. Our goal is to provide rich and detailed tutorials,...

Latest Blog Posts

Understanding the React JS – State

In earlier chapters, we’ve mostly dealt with React components that do not require state management. This article’s main focus is on the React JS – State, its management, and components that utilize it to React. Recap: In Chapter One, get introduced to React with features. If you are new to …

React JS -Understanding React Components

Components are the main building blocks of any React app and a typical React app will have many of the components. In a simple manner, a component is a JavaScript class or function that optionally accepts inputs i.e. properties(props), and returns a React element that describes how a section of …

React JS – Setting up the Environment

In this lesson you will learn to set up Git and Node.js on your compute , and crete-react-app. At the end of this , you will be able to: Set up a Git repository and perform basic Git operations Use Node-based modules to perform basic operations Make use of create-react-app …

What are Babel and Webpack; and how to properly use them?

Introduction to Webpack In this article, we will learn what exactly is Webpack? What are we talking about? Webpack, this is often a definition from the Webpack documentation itself. It says Webpack may be a module bundler for contemporary JavaScript applications. Now, what Webpack does is, it’s at the whole …

What and why React JS?

What is React.js? React.js is an open-source JavaScript library that is used for building user interfaces and specifically for single-page applications. It’s also used for handling the view layer for web and mobile apps also. And React also allows us to create reusable UI components that make our application awesome. …

Create a Containerized .NET Core Web Applications

Introduction In this article, you’ll learn how to Create a Containerized .NET Core Web Applications. In the previous article, we created some containers based on existing Docker images hosted on Docker Hub. But, if we wanted to create our own Docker images, That’s where a Dockerfile comes in. Please, read …

Build Docker Images by using Dockerfile

Introduction In this article, you will learn how to build a Docker image using Dockerfile. The docker file is a text document that contains all the instructions users provide to assemble an image. Please, read our previous article before proceeding to this article where we learn Docker Networking. What is …