Aptitude Exam / UML Diagram Web Application Architecture Web Application Architecture – Load Balancing and Caching SOFTWARE SYSTEM DESIGN INTERVIEW QUESTIONS UML Use Case Diagram
MERN Basic
SERVER 1. package.json { “name”: “mernapp”, “version”: “1.0.0”, “description”: “”, “main”: “server.js”, “scripts”: { “test”: “echo \”Error: no test specified\” && exit 1″, “build”: “cd
Create Form Using Class – React Form
TypeScript Form preventDefault on Submit <div id=”app”></div> class LoginPanel { public appDiv: HTMLElement = document.getElementById(‘app’); constructor() { this.setForm(); const form = document.getElementById(‘loginForm’); form.addEventListener(‘submit’, (event) =>
Typescript & React – Getting Started
Generics Class class Collection<TypeOfItem> { items: Array<TypeOfItem> = []; add(item: TypeOfItem){ this.items.push(item); } remove(item: TypeOfItem) { const index = this.items.findIndex(i => i === item); this.items.splice(index,
React Key-List
ReactJS | Keys | List A “key” is a special string attribute you need to include when creating lists of elements in React. Keys are
Bable Intro
ReactJS | Basics of ES, Babel and npm What is ES? ES is an abbreviation used for ECMA Script. It is a standard for different
Reusable Component – React Form III
Building forms using React — everything you need to know Forms are integral to any modern application. They serve as a basic medium for users
Controlled Forms in React – React Form II
React makes it easy to manipulate data using forms. Form input values can be set to state values and then updated via React events. Defining
How to handle forms with just React – React Form I
First thing I wish to mention is how powerful and underestimated DOM API is. It has a somewhat bad reputation, though, because it’s completely imperative.
Build Tools Basic
Grunt vs gulp vs Webpack Introduction With the increasing complexity of Javascript projects and the need to automate tasks, track app performances and execute some