{"id":10093,"date":"2021-05-26T19:02:34","date_gmt":"2021-05-26T13:32:34","guid":{"rendered":"https:\/\/www.konstantinfo.com\/blog\/?p=10093"},"modified":"2021-05-26T19:02:52","modified_gmt":"2021-05-26T13:32:52","slug":"monolithic-vs-microservices-which-architecture-prefer","status":"publish","type":"post","link":"https:\/\/www.konstantinfo.com\/konstant-blog\/monolithic-vs-microservices-which-architecture-prefer\/","title":{"rendered":"Monolithic vs Microservices: Which Web App Architecture to Prefer?"},"content":{"rendered":"<div class=\"top-container\">\n<p><span style=\"text-decoration: underline;\"><strong>Table of Contents<\/strong><\/span><\/p>\n<ul>\n<li><a href=\"#1\">How does System Architecture for Web Application work?<\/a><\/li>\n<li><a href=\"#2\">Basis Components of Web Application Architecture<\/a><\/li>\n<li><a href=\"#3\">Which web architecture should you prefer?<\/a><\/li>\n<li><a href=\"#4\">Differences: Monolithic vs Microservices<\/a><\/li>\n<li><a href=\"#5\">Why everyone prefers Microservices Architecture for Web Application?<\/a><\/li>\n<\/ul>\n<\/div>\n<p>Application components communicate with each other via web application architecture. It is the way a client connects to the server that makes architecture unique. There are many different ways that these two combine: A server can connect with multiple clients, or a server can connect with one single client.<\/p>\n<p>Architectures foster the relationships and interactions (communication) between components such as user interfaces, transaction processing, and databases. It binds and makes all elements work together correctly.<\/p>\n<h2><span id=\"1\">How does System Architecture for Web Application work?<\/span><\/h2>\n<p>Every application consists of a front-end and a back-end. The front-end is the UI\/UX part, and the back-end operates the database. Users interact with the interface (presentation layer), and the back end handles the business logic and HTTP requests. There can be various ways for a server to communicate with its client systems.<\/p>\n<p>As an example: Users fill in the contact us form (interface), and the details get saved into the application database. This process completes the web application architecture.<\/p>\n<p>Users -&gt; interacts with Client Side with HTML + CSS + JavaScript -&gt; requests server side for business logic PHP, Java, .Net -&gt; sends request to database with MySQL, PostgreSQL<\/p>\n<h2><span id=\"2\">Basis Components of Web Application Architecture<\/span><\/h2>\n<p>Layers of Web App Architecture:<\/p>\n<ul>\n<li><strong>Presentation Layer<\/strong> &#8211; Displays UI and makes user interaction simpler.<\/li>\n<li><strong>Data Service Layer<\/strong> &#8211; Transmits data processed by Business Logic to Presentation Layer.<\/li>\n<li><strong>Business Logic Layer<\/strong> &#8211; Guarantees the proper data exchange.<\/li>\n<li><strong>Data Access Layer<\/strong> &#8211; Provides simplified access to data.<\/li>\n<\/ul>\n<h2><span id=\"3\">Which web architecture should you prefer?<\/span><\/h2>\n<p>The app logic distribution throughout the web application decides the type of the web application. The most common web application architectures are:<\/p>\n<ol>\n<li><strong>Single-page web apps<\/strong> \u2013 It loads all required information when you load the page. E.g. Gmail, Facebook, Slack, Twitter<\/li>\n<li><strong>Multi-page web apps<\/strong> \u2013 These are large applications where servers send solutions to reload across client browsers.<\/li>\n<li><strong>Microservices Architecture<\/strong> \u2013 It lets developers create a web app with a set of small services. Developers create and deploy every component separately. It is suitable for large applications where every block works independently &#8211; Netflix, PayPal, Spotify, Uber etc.<\/li>\n<li><strong>Monolithic Architecture <\/strong>\u2013 It consists of database, client-side, and server-side. The back-end and front-end tasks evolve via one codebase. Therefore, if any changes are required, then developers need to rewrite the entire application.<\/li>\n<li><strong>Server-less architecture<\/strong> \u2013 Serverless architecture often refers to a platform as a service (PaaS) or function as a service (FaaS). It is preferable if you need to host a small number of functions. It is suitable for simple applications. It is a design pattern that hosts a third-party service, eliminating the need to manage software and hardware. The app bifurcates into individual functions that are invoked and scaled.<\/li>\n<li><strong>Progressive web apps<\/strong> \u2013 Progressive web applications are web-based solutions designed to act like Native applications on mobile devices. It offers offline access, push notifications, installing on the home screen of the mobile device. It includes web programming languages like HTML, CSS, JavaScript and API like NFC API, Geolocation API, Bluetooth API etc.<\/li>\n<\/ol>\n<h2><span id=\"4\">Differences: Monolithic vs Microservices<\/span><\/h2>\n<p>As part of the current discussion, let\u2019s discuss Monolithic and Micro-services in detail.<\/p>\n<h3>Monolithic Applications<\/h3>\n<p>Monolithic architecture is built as one system and is usually one codebase.<\/p>\n<p><strong>Features and Advantages<\/strong><\/p>\n<ul>\n<li>It depends upon <strong>a single code base<\/strong>.<\/li>\n<li>The number of <strong>modules is variable<\/strong> and depends upon the complexity of the business.<\/li>\n<li>All dependencies depend on a single system with a <strong>single executable binary<\/strong> for deployment.<\/li>\n<li>Such applications offer <strong>less operational overheads<\/strong>, which avoids the additional costs that could stem from micro-services such as inter-service communication &#8211; service discovery &#8211; registration &#8211; load balancing &#8211; decentralized data management &#8211; distributed logging.<\/li>\n<li><strong>Testing microservices is complex<\/strong>.<\/li>\n<li>Monolithic architecture has a <strong>better throughput performance<\/strong>.<\/li>\n<li>It is easier to <strong>create \u2013 test \u2013 deploy &#8211; scale<\/strong>.<\/li>\n<li>It has a <strong>shared database<\/strong>.<\/li>\n<li><strong>Large code base increases the building load<\/strong> \u2013 compile \u2013 execute \u2013 test \u2013 deployment timings.<\/li>\n<\/ul>\n<p><strong>Disadvantages<\/strong><\/p>\n<ul>\n<li><strong>Tight coupling<\/strong> makes it difficult to upgrade the services.<\/li>\n<li><strong>Upgrades require recoding<\/strong> the entire application to factor in the dependencies and side effects.<\/li>\n<li><strong>Integrating<\/strong> more than one <strong>programming language limits the flexibility<\/strong> of adding in the best features.<\/li>\n<li>It <strong>complicates the adoption of third-party tools.<\/strong><\/li>\n<li>This approach is <strong>limited to small applications<\/strong>.<\/li>\n<li>Load and <strong>turnaround time can be high<\/strong> for larger applications.<\/li>\n<li>The application is <strong>deployable on every update<\/strong>.<\/li>\n<li>It requires <strong>extensive manual testing<\/strong>.<\/li>\n<li>These applications are difficult to scale when different modules have <strong>conflicting resource requirements<\/strong>.<\/li>\n<li><strong>Deployment is difficult<\/strong>.<\/li>\n<li>Monolithic applications are <strong>not reliable<\/strong> as a single bug can impact the entire process.<\/li>\n<li>You <strong>cannot adopt new technologies<\/strong> with Monolithic applications as changes in frameworks or languages affect the entire application.<\/li>\n<li><strong>Refactoring<\/strong> an application <strong>becomes difficult<\/strong> for large enterprise applications in a monolithic architecture.<\/li>\n<\/ul>\n<h3>Microservices Applications<\/h3>\n<p>Microservices architecture is a small independent module based on business functionality. Each small micro-service is a small application with hexagonal architecture that consists of business logic along with adapters. Microservices also expose REST, RPC, message-based API and implement a web UI. It significantly impacts the cord between the application and the database. Each service has its database schema, independent of each other. In this architecture, APIs for mobile, desktop and web apps interact with the back end services via API gateway, which handles load balancing, caching, access control, monitoring and API metering.<\/p>\n<p><strong>Features and Advantages<\/strong><\/p>\n<p>Micro-services architecture handles larger and complex applications with multiple modules and multiple databases. It works on modular components and services. Micro-services architecture helps manage data sets, leverage cloud storage, automation and deploy solutions.<\/p>\n<ul>\n<li>Applications based on micro-service architecture are <strong>independently deployable<\/strong>.<\/li>\n<li>Each unit or module works <strong>independently<\/strong>.<\/li>\n<li>Microservice units <strong>reduce<\/strong> the possibility of <strong>technical mistakes<\/strong>.<\/li>\n<li>These micro-service units are capable of <strong>independent scaling<\/strong>, and any failure does not affect another.<\/li>\n<li>Smaller units are <strong>faster to deploy<\/strong>, and there are minimal chances of error if integrated.<\/li>\n<li>Smaller units are easier to understand and <strong>easier to develop<\/strong>.<\/li>\n<\/ul>\n<p><strong>Disadvantages<\/strong><\/p>\n<ul>\n<li>Deploying micro-services increases the number of units, which eventually increases the management and <strong>operation cost overhead<\/strong>.<\/li>\n<li>It is <strong>prone to security vulnerabilities<\/strong> and requires managing privileged access at image, container, node, pod, and namespace levels to ensure encrypted tunnelling right from the beginning of the software development.<\/li>\n<li>Multiple modules can have <strong>complexities<\/strong> and corresponding management.<\/li>\n<li>It often requires <strong>provisioning IPs, resources<\/strong> (memory, CPU, disk), multiple <strong>programming languages<\/strong> and frameworks, <strong>data consistency<\/strong>, a<strong>utomation tools<\/strong>, <strong>handling incompatibilities<\/strong> across the number of processes that grow exponentially.<\/li>\n<li>It often requires provisioning for increasing documentation overhead stemming from the need to keep schemas and interface documents.<\/li>\n<li>Testing all modules requires testing each dependent service.<\/li>\n<li>Difficulty in debugging problems as it requires inspecting every service log independently.<\/li>\n<\/ul>\n<h2><span id=\"5\">Conclusive: Why everyone prefers Microservices Architecture for Web Application?<\/span><\/h2>\n<p>We have discussed six different types of service architectures for <a href=\"https:\/\/www.konstantinfo.com\/web-development\" target=\"_blank\">web app development<\/a> here. We prefer Micro-services as it is scalable with a rate of 22.5%. It brings in the idea to split the application into small interconnected services instead of building a single monolithic application. But this approach is at odds with the enterprise-wide data model, and also, it often results in duplication of some data. This architecture is widely accepted because having a database schema per service ensures loose coupling. Each service has its database. For details on how we implement it, <a href=\"https:\/\/www.konstantinfo.com\/contact-us\" target=\"_blank\"><strong>contact us here<\/strong><\/a>!<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Table of Contents How does System Architecture for Web Application work? Basis Components of Web Application Architecture Which web architecture should you prefer? Differences: Monolithic vs Microservices Why everyone prefers Microservices Architecture for Web Application? Application components communicate with each other via web application architecture. It is the way a client connects to the server&hellip; <a class=\"more-link\" href=\"https:\/\/www.konstantinfo.com\/konstant-blog\/monolithic-vs-microservices-which-architecture-prefer\/\">Continue reading <span class=\"screen-reader-text\">Monolithic vs Microservices: Which Web App Architecture to Prefer?<\/span><\/a><\/p>\n","protected":false},"author":21,"featured_media":10094,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[150,41],"tags":[1577],"class_list":["post-10093","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-technology","category-web-development","tag-monolithic-vs-microservices","entry"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.3 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Monolithic vs Microservices: Which Web App Architecture to Prefer? - Konstantinfo<\/title>\n<meta name=\"description\" content=\"Here are reasons why developers devour microservices architecture over all others!\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.konstantinfo.com\/konstant-blog\/monolithic-vs-microservices-which-architecture-prefer\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Monolithic vs Microservices: Which Web App Architecture to Prefer? - Konstantinfo\" \/>\n<meta property=\"og:description\" content=\"Here are reasons why developers devour microservices architecture over all others!\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.konstantinfo.com\/konstant-blog\/monolithic-vs-microservices-which-architecture-prefer\/\" \/>\n<meta property=\"og:site_name\" content=\"Konstantinfo\" \/>\n<meta property=\"article:author\" content=\"http:\/\/www.facebook.com\/konstant.info\" \/>\n<meta property=\"article:published_time\" content=\"2021-05-26T13:32:34+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2021-05-26T13:32:52+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.konstantinfo.com\/konstant-blog\/wp-content\/uploads\/2021\/05\/monolithic-vs-microservices-1.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1008\" \/>\n\t<meta property=\"og:image:height\" content=\"448\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Neeti Kotia\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@konstantinfo\" \/>\n<meta name=\"twitter:site\" content=\"@konstantinfo\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Neeti Kotia\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"6 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.konstantinfo.com\/konstant-blog\/monolithic-vs-microservices-which-architecture-prefer\/\",\"url\":\"https:\/\/www.konstantinfo.com\/konstant-blog\/monolithic-vs-microservices-which-architecture-prefer\/\",\"name\":\"Monolithic vs Microservices: Which Web App Architecture to Prefer? - Konstantinfo\",\"isPartOf\":{\"@id\":\"https:\/\/www.konstantinfo.com\/konstant-blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.konstantinfo.com\/konstant-blog\/monolithic-vs-microservices-which-architecture-prefer\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.konstantinfo.com\/konstant-blog\/monolithic-vs-microservices-which-architecture-prefer\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.konstantinfo.com\/konstant-blog\/wp-content\/uploads\/2021\/05\/monolithic-vs-microservices-1.jpg\",\"datePublished\":\"2021-05-26T13:32:34+00:00\",\"dateModified\":\"2021-05-26T13:32:52+00:00\",\"author\":{\"@id\":\"https:\/\/www.konstantinfo.com\/konstant-blog\/#\/schema\/person\/f21f3944d0e3bceb3e4884381bb224b9\"},\"description\":\"Here are reasons why developers devour microservices architecture over all others!\",\"breadcrumb\":{\"@id\":\"https:\/\/www.konstantinfo.com\/konstant-blog\/monolithic-vs-microservices-which-architecture-prefer\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.konstantinfo.com\/konstant-blog\/monolithic-vs-microservices-which-architecture-prefer\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.konstantinfo.com\/konstant-blog\/monolithic-vs-microservices-which-architecture-prefer\/#primaryimage\",\"url\":\"https:\/\/www.konstantinfo.com\/konstant-blog\/wp-content\/uploads\/2021\/05\/monolithic-vs-microservices-1.jpg\",\"contentUrl\":\"https:\/\/www.konstantinfo.com\/konstant-blog\/wp-content\/uploads\/2021\/05\/monolithic-vs-microservices-1.jpg\",\"width\":1008,\"height\":448,\"caption\":\"monolithic-vs-microservices\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.konstantinfo.com\/konstant-blog\/monolithic-vs-microservices-which-architecture-prefer\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.konstantinfo.com\/konstant-blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Monolithic vs Microservices: Which Web App Architecture to Prefer?\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.konstantinfo.com\/konstant-blog\/#website\",\"url\":\"https:\/\/www.konstantinfo.com\/konstant-blog\/\",\"name\":\"Konstantinfo\",\"description\":\"Welcome to Konstant Info\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.konstantinfo.com\/konstant-blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.konstantinfo.com\/konstant-blog\/#\/schema\/person\/f21f3944d0e3bceb3e4884381bb224b9\",\"name\":\"Neeti Kotia\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.konstantinfo.com\/konstant-blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/www.konstantinfo.com\/konstant-blog\/wp-content\/uploads\/2018\/02\/Neeti-150x150.jpg\",\"contentUrl\":\"https:\/\/www.konstantinfo.com\/konstant-blog\/wp-content\/uploads\/2018\/02\/Neeti-150x150.jpg\",\"caption\":\"Neeti Kotia\"},\"description\":\"Neeti Kotia is a technology journalist who seeks to analyze the advancements and developments in technology that affect our everyday lives. Her articles primarily focus upon the business, social, cultural, and entertainment side of the technology sector.\",\"sameAs\":[\"http:\/\/www.konstantinfo.com\",\"http:\/\/www.facebook.com\/konstant.info\",\"https:\/\/x.com\/konstantinfo\"],\"url\":\"https:\/\/www.konstantinfo.com\/konstant-blog\/author\/neeti-kotia\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Monolithic vs Microservices: Which Web App Architecture to Prefer? - Konstantinfo","description":"Here are reasons why developers devour microservices architecture over all others!","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.konstantinfo.com\/konstant-blog\/monolithic-vs-microservices-which-architecture-prefer\/","og_locale":"en_US","og_type":"article","og_title":"Monolithic vs Microservices: Which Web App Architecture to Prefer? - Konstantinfo","og_description":"Here are reasons why developers devour microservices architecture over all others!","og_url":"https:\/\/www.konstantinfo.com\/konstant-blog\/monolithic-vs-microservices-which-architecture-prefer\/","og_site_name":"Konstantinfo","article_author":"http:\/\/www.facebook.com\/konstant.info","article_published_time":"2021-05-26T13:32:34+00:00","article_modified_time":"2021-05-26T13:32:52+00:00","og_image":[{"width":1008,"height":448,"url":"https:\/\/www.konstantinfo.com\/konstant-blog\/wp-content\/uploads\/2021\/05\/monolithic-vs-microservices-1.jpg","type":"image\/jpeg"}],"author":"Neeti Kotia","twitter_card":"summary_large_image","twitter_creator":"@konstantinfo","twitter_site":"@konstantinfo","twitter_misc":{"Written by":"Neeti Kotia","Est. reading time":"6 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/www.konstantinfo.com\/konstant-blog\/monolithic-vs-microservices-which-architecture-prefer\/","url":"https:\/\/www.konstantinfo.com\/konstant-blog\/monolithic-vs-microservices-which-architecture-prefer\/","name":"Monolithic vs Microservices: Which Web App Architecture to Prefer? - Konstantinfo","isPartOf":{"@id":"https:\/\/www.konstantinfo.com\/konstant-blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.konstantinfo.com\/konstant-blog\/monolithic-vs-microservices-which-architecture-prefer\/#primaryimage"},"image":{"@id":"https:\/\/www.konstantinfo.com\/konstant-blog\/monolithic-vs-microservices-which-architecture-prefer\/#primaryimage"},"thumbnailUrl":"https:\/\/www.konstantinfo.com\/konstant-blog\/wp-content\/uploads\/2021\/05\/monolithic-vs-microservices-1.jpg","datePublished":"2021-05-26T13:32:34+00:00","dateModified":"2021-05-26T13:32:52+00:00","author":{"@id":"https:\/\/www.konstantinfo.com\/konstant-blog\/#\/schema\/person\/f21f3944d0e3bceb3e4884381bb224b9"},"description":"Here are reasons why developers devour microservices architecture over all others!","breadcrumb":{"@id":"https:\/\/www.konstantinfo.com\/konstant-blog\/monolithic-vs-microservices-which-architecture-prefer\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.konstantinfo.com\/konstant-blog\/monolithic-vs-microservices-which-architecture-prefer\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.konstantinfo.com\/konstant-blog\/monolithic-vs-microservices-which-architecture-prefer\/#primaryimage","url":"https:\/\/www.konstantinfo.com\/konstant-blog\/wp-content\/uploads\/2021\/05\/monolithic-vs-microservices-1.jpg","contentUrl":"https:\/\/www.konstantinfo.com\/konstant-blog\/wp-content\/uploads\/2021\/05\/monolithic-vs-microservices-1.jpg","width":1008,"height":448,"caption":"monolithic-vs-microservices"},{"@type":"BreadcrumbList","@id":"https:\/\/www.konstantinfo.com\/konstant-blog\/monolithic-vs-microservices-which-architecture-prefer\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.konstantinfo.com\/konstant-blog\/"},{"@type":"ListItem","position":2,"name":"Monolithic vs Microservices: Which Web App Architecture to Prefer?"}]},{"@type":"WebSite","@id":"https:\/\/www.konstantinfo.com\/konstant-blog\/#website","url":"https:\/\/www.konstantinfo.com\/konstant-blog\/","name":"Konstantinfo","description":"Welcome to Konstant Info","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.konstantinfo.com\/konstant-blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/www.konstantinfo.com\/konstant-blog\/#\/schema\/person\/f21f3944d0e3bceb3e4884381bb224b9","name":"Neeti Kotia","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.konstantinfo.com\/konstant-blog\/#\/schema\/person\/image\/","url":"https:\/\/www.konstantinfo.com\/konstant-blog\/wp-content\/uploads\/2018\/02\/Neeti-150x150.jpg","contentUrl":"https:\/\/www.konstantinfo.com\/konstant-blog\/wp-content\/uploads\/2018\/02\/Neeti-150x150.jpg","caption":"Neeti Kotia"},"description":"Neeti Kotia is a technology journalist who seeks to analyze the advancements and developments in technology that affect our everyday lives. Her articles primarily focus upon the business, social, cultural, and entertainment side of the technology sector.","sameAs":["http:\/\/www.konstantinfo.com","http:\/\/www.facebook.com\/konstant.info","https:\/\/x.com\/konstantinfo"],"url":"https:\/\/www.konstantinfo.com\/konstant-blog\/author\/neeti-kotia\/"}]}},"show_toc":false,"table_of_content":[],"faq":[],"related_blogs":[{"id":11095,"title":"How to Build a Real Estate Website &#8211; A Detailed Guide","slug":"build-real-estate-website","link":"https:\/\/www.konstantinfo.com\/konstant-blog\/build-real-estate-website\/","modified":"2026-05-07 17:49:50","excerpt":"\u201cWebsites promote you 24\/7: No employee will do that.\u201d \u2013 Paul Cookson This powerful quote by the popular writer, Paul...","image":"https:\/\/www.konstantinfo.com\/konstant-blog\/wp-content\/uploads\/2024\/10\/build-a-real-estate-website.webp"},{"id":5342,"title":"How Much Does It Cost to Develop an Augmented Reality App?","slug":"how-much-does-it-cost-to-develop-an-augmented-reality-app","link":"https:\/\/www.konstantinfo.com\/konstant-blog\/how-much-does-it-cost-to-develop-an-augmented-reality-app\/","modified":"2026-05-04 13:26:23","excerpt":"Augmented Reality app development seems like magic. Like what you see on your mobile screen can be generated in real...","image":"https:\/\/www.konstantinfo.com\/konstant-blog\/wp-content\/uploads\/2017\/11\/cost-of-Augmented-Reality-300x133.jpg"},{"id":6850,"title":"Hiring a Skilled and Experienced Nodejs Developer is Easy; Determine Cost Factors!","slug":"cost-to-hire-a-nodejs-developer","link":"https:\/\/www.konstantinfo.com\/konstant-blog\/cost-to-hire-a-nodejs-developer\/","modified":"2026-05-04 13:23:21","excerpt":"After spending two days on research, there is no doubt in my mind about the power that node provides to...","image":"https:\/\/www.konstantinfo.com\/konstant-blog\/wp-content\/uploads\/2018\/09\/Nodejs-Developer-1-300x133.jpg"}],"_links":{"self":[{"href":"https:\/\/www.konstantinfo.com\/konstant-blog\/wp-json\/wp\/v2\/posts\/10093","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.konstantinfo.com\/konstant-blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.konstantinfo.com\/konstant-blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.konstantinfo.com\/konstant-blog\/wp-json\/wp\/v2\/users\/21"}],"replies":[{"embeddable":true,"href":"https:\/\/www.konstantinfo.com\/konstant-blog\/wp-json\/wp\/v2\/comments?post=10093"}],"version-history":[{"count":0,"href":"https:\/\/www.konstantinfo.com\/konstant-blog\/wp-json\/wp\/v2\/posts\/10093\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.konstantinfo.com\/konstant-blog\/wp-json\/wp\/v2\/media\/10094"}],"wp:attachment":[{"href":"https:\/\/www.konstantinfo.com\/konstant-blog\/wp-json\/wp\/v2\/media?parent=10093"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.konstantinfo.com\/konstant-blog\/wp-json\/wp\/v2\/categories?post=10093"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.konstantinfo.com\/konstant-blog\/wp-json\/wp\/v2\/tags?post=10093"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}