{"id":4641,"date":"2018-05-19T07:58:51","date_gmt":"2018-05-19T07:58:51","guid":{"rendered":"https:\/\/codewaveinsdev.wpengine.com\/?p=4641"},"modified":"2023-08-01T16:26:12","modified_gmt":"2023-08-01T16:26:12","slug":"angular-2-for-modern-fast-and-mobile-first-apps","status":"publish","type":"post","link":"https:\/\/codewave.com\/insights\/angular-2-for-modern-fast-and-mobile-first-apps\/","title":{"rendered":"Angular 2 for Modern, Fast and Mobile-First Apps"},"content":{"rendered":"\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p>I\u2019ve made the switch to Angular 2 for building modern, fast, mobile first web apps and here\u2019s why I\u2019d recommend it<\/p>\n<\/blockquote>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"scrollTo\"><span id=\"why-i-recommend-angular-2-for-building-modern-applications\">Why I recommend Angular 2 for building modern applications?<\/span><\/h2>\n\n\n\n<p>If your web app is built on Angularjs, why not switch to Angular 2 if it can make your web app 5x faster? Here are four reasons why I\u2019d recommend Angular 2 for developers building new web applications or planning to upgrade old apps to new frameworks.<br>1. Performance (speed)<br>2. Mobile device support (native app like experiences)<br>3. Component based (modularity and reusability)<br>4. Typescript and Ecmascript (ES6) support (clean and structured code)<\/p>\n\n\n\n<h2 id=\"performance-speed-of-apps-built-with-angular2\" class=\"wp-block-heading\">Performance &amp; speed of apps built with Angular2 <\/h2>\n\n\n\n<p>The most important factor of any web application is \u201cperformance\u201d, specially in case of web applications that have complex UI, rendering large amounts of dynamic data.&nbsp;<strong>Watch Listener<\/strong>&nbsp;is an important capability Angular offers to constantly check if there are changes in data and if there are, load the new data without page refresh. Angular 2 compared to Angular 1.x, offers a much faster and smarter way to automatically detect data that is continuously changing and respond to it swiftly, without hindering the user experience on the web page.<\/p>\n\n\n\n<h3 id=\"manual-watchlists-in-angular-1-x-vs-auto-detection-triggers-in-angular-2\" class=\"wp-block-heading\">Manual Watchlists in Angular 1.x Vs Auto detection &amp; triggers in Angular 2<\/h3>\n\n\n\n<p>Responding to change in data is much slower in Angular 1.x and here\u2019s what makes it so. In Angular 1.x,&nbsp;<strong>$scope<\/strong>&nbsp;assign a value to variable, creates watches (to listen to change in data). Many such watches result in a watchlist. When the value in $scope is modified to a new value, a&nbsp;<strong>digest cycle<\/strong>&nbsp;takes place. Every digest cycle will have a minimum of 2 iterations because the first iteration will watch (check) for any change in $scope and second iteration will be performed to make sure that there are no watches in the 2 iterations. Chances are that the value modified by one watch may also modify the value modified by another watch, in the meanwhile. After one complete digest cycle, the UI gets updated and renders the DOM. This may not be a problem with simple UI, however in case of a complex UI, it takes more time to update the DOM, which results in slow performance.<\/p>\n\n\n\n<div class=\"wp-block-buttons is-layout-flex wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button is-style-fill\"><a class=\"wp-block-button__link wp-element-button\" href=\"https:\/\/insights.codewave.com\/building-scalable-powerful-apps-with-mean-stack-nodejs\/\" target=\"_blank\" rel=\"noreferrer noopener\">Scalable powerful apps with mean stack<\/a><\/div>\n<\/div>\n\n\n\n<p>In Angular 2, detection of change is done automatically by making use of Zone.js and it triggers change (like $digest in Angular 1.x). Asynchronous operations like events, http requests, timers cause the state to change in our application. Zone.js makes use of the concept \u201cMoney Patch\u201d i.e., replacing a member function (and related functionality) on any object with a new one. Zone.js obstructs all of the asynchronous APIs in the browser (when Angular runs). This is the reason why we use setTimeout() inside our components rather than something like $timeout because setTimeout() is monkey patched.&nbsp;<\/p>\n\n\n\n<h3 id=\"angular-2-maintains-change-detector-for-every-component-directive\" class=\"wp-block-heading\"><strong>Angular 2 maintains change detector for every component \/ directive<\/strong><\/h3>\n\n\n\n<p>It keeps track of the state of all of your bindings, for dirty checking. These are similar to $watch in Angular 1.x for template bindings. Change detection graph traverses from root to its leaves. It is a unidirectional directed tree and cannot have cycles. When an event is triggered, event handler callback runs, updates the view and renders the DOM. Since Angular 2 follows a unidirectional tree structure, it provides improved performance than it\u2019s previous version.<\/p>\n\n\n\n<p>To summarize, if I were to build a web application for stock market enthusiasts that deals with a lot of data every minute or let\u2019s say a web application that counts people falling sick every minute indicating patterns \u2013 I\u2019d do it on Angular 2.<\/p>\n\n\n\n<div class=\"wp-block-buttons is-layout-flex wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button is-style-outline\"><a class=\"wp-block-button__link wp-element-button\" href=\"https:\/\/insights.codewave.com\/aws-best-security-practices-secure-cloud\/\" target=\"_blank\" rel=\"noreferrer noopener\">Download best AWS security practices<\/a><\/div>\n<\/div>\n\n\n\n<h2 id=\"does-angular2-support-mobile-devices-for-native-app-like-experiences\" class=\"wp-block-heading\">Does Angular2 support mobile devices for native app like experiences?<\/h2>\n\n\n\n<p>AngularJS 1.x was not built by keeping mobile devices in mind. We could achieve it using frameworks like Ionic. But, this requires additional learning curve and may also affect the overall user experience.&nbsp;<strong>Angular 2 has been designed with mobile in mind,&nbsp;<\/strong>it is designed to offer extensive support for mobile devices where touch events and gestures work across all devices.<\/p>\n\n\n\n<ul>\n<li>Angular 2 supports Single (Universal) Framework for both Web and Mobile device which reduces learning curve to most of the developers.<\/li>\n\n\n\n<li>Angular 2 has great mobile features like touch support, low memory, material design UI elements and performance tuning etc, which will help quickly resolve mobile related issues.<\/li>\n\n\n\n<li>We can build a native application for android and IOS with the help of Angular 2 &amp; Nativescript 2.0. We can reuse the same code what was written to build the web application.<\/li>\n<\/ul>\n\n\n\n<h2 id=\"component-based-modularity-and-code-reusability-in-angular-2\" class=\"wp-block-heading\">Component based: modularity and code reusability in Angular 2<\/h2>\n\n\n\n<p>In Angular 1.x, we have controllers and scope. In Angular 2.x, there are no controllers &amp; scope, they\u2019ve been replaced with Components. Components enable the code to be highly modular and reusable.<\/p>\n\n\n\n<p>Another big plus point of moving towards Component \u2013 based apps is that it will be easier to define Interfaces. Also the HTML elements already have an easily mappable interface in events, attributes, and properties. This is the reason why the code is more testable, because of the exposed behaviour of the component.<\/p>\n\n\n\n<p>Technically, Components are directives that are always associated with a direct template. Here\u2019s how a Component works:<\/p>\n\n\n\n<p><strong>Step 1:&nbsp;<\/strong>Import the component<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>import { Component } from \u2018@angular\/core\u2019<\/code><\/pre>\n\n\n\n<p><strong>Step 2:&nbsp;<\/strong>Add metadata to component using typescript decorator.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>@Component({\nselector: \u2018my-app\u2019,\ntemplate: Hello.\n})<\/code><\/pre>\n\n\n\n<p><br>This metadata tells Angular 2 how to process a class<br><strong>Step 3:&nbsp;<\/strong>Export the component.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>export class AppComponent {\ncomponentName: \u2018AppComponent\u2019\n}<\/code><\/pre>\n\n\n\n<p><br><strong>Step 4:&nbsp;<\/strong>Bootstrap the component.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>import { bootstrap } from \u2018@angular\/platform-browser-dynamic\u2019\nbootstrap(AppComponent)<\/code><\/pre>\n\n\n\n<div class=\"wp-block-buttons is-layout-flex wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link wp-element-button\" href=\"https:\/\/insights.codewave.com\/mern-stack-development\/\">MERN STACK WEB DEVELOPMENT<\/a><\/div>\n<\/div>\n\n\n\n<h2 id=\"does-angular2-support-typescript-and-ecmascript-es6-for-writing-clean-and-structured-code\" class=\"wp-block-heading\">Does Angular2 support Typescript and Ecmascript (ES6) for writing clean and structured code?<\/h2>\n\n\n\n<p>Angular 2 has been built using Typescript (superset of javascript), which I see as the future of web application development, because of its object oriented properties such as class, interfaces etc., along with the support of Ecmascript(ES6) which helps in handling complex application logic and building them.<\/p>\n\n\n\n<p>There is high productivity with Typescript because of its cleaner ECMAScript 6 syntax and optional typing. TypeScript makes code easier to read and understand than plain javascript. You wonder, how?<\/p>\n\n\n\n<p>Eg: jQuery.ajax (url, settings)<\/p>\n\n\n\n<p>Here we know exactly, its takes 2 parameters for sure. First one may be of type string and second parameter is of type configuration object. But, this is just a guess and that might be wrong too. We have no idea what data go into the settings object.<\/p>\n\n\n\n<p>There is no way we can know settings object without checking the source code or the documentation. Checking the source code is not an optimal way to find it. We can check the documentation, but it is not the best developer experience and it takes additional time. One should be able to pick functions and classes for reuse, by just looking at the definition (eg: interface definition) not the implementation.<\/p>\n\n\n\n<div class=\"wp-block-buttons is-layout-flex wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button is-style-outline\"><a class=\"wp-block-button__link wp-element-button\" href=\"https:\/\/www.codewave.com\/contact\" target=\"_blank\" rel=\"noreferrer noopener\">Contact codewave&#8217;s angular2 consultants<\/a><\/div>\n<\/div>\n","protected":false},"excerpt":{"rendered":"Angular 2 can make web apps upto 5x faster compared to the traditional web development technologies &#038; framework. \n","protected":false},"author":1,"featured_media":4648,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"csco_singular_sidebar":"","csco_page_header_type":"full","csco_page_load_nextpost":"","csco_post_video_location":[],"csco_post_video_url":"","csco_post_video_bg_start_time":0,"csco_post_video_bg_end_time":0,"footnotes":""},"categories":[34,31],"tags":[269,744,532,95,533,745,746],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Angular 2 for Modern, Fast and Mobile-First Apps<\/title>\n<meta name=\"description\" content=\"Angular 2 can make web apps upto 5x faster compared to the traditional web development technologies &amp; framework.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/codewave.com\/insights\/angular-2-for-modern-fast-and-mobile-first-apps\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Angular 2 for Modern, Fast and Mobile-First Apps\" \/>\n<meta property=\"og:description\" content=\"Angular 2 can make web apps upto 5x faster compared to the traditional web development technologies &amp; framework.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/codewave.com\/insights\/angular-2-for-modern-fast-and-mobile-first-apps\/\" \/>\n<meta property=\"article:author\" content=\"https:\/\/www.facebook.com\/codewave.inc\" \/>\n<meta property=\"article:published_time\" content=\"2018-05-19T07:58:51+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-08-01T16:26:12+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/codewave.com\/insights\/wp-content\/uploads\/2022\/08\/Angular-2-web-app-development.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1000\" \/>\n\t<meta property=\"og:image:height\" content=\"700\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Codewave\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@https:\/\/twitter.com\/codewave_inc\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Codewave\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/codewave.com\/insights\/angular-2-for-modern-fast-and-mobile-first-apps\/\",\"url\":\"https:\/\/codewave.com\/insights\/angular-2-for-modern-fast-and-mobile-first-apps\/\",\"name\":\"Angular 2 for Modern, Fast and Mobile-First Apps\",\"isPartOf\":{\"@id\":\"https:\/\/codewave.com\/insights\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/codewave.com\/insights\/angular-2-for-modern-fast-and-mobile-first-apps\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/codewave.com\/insights\/angular-2-for-modern-fast-and-mobile-first-apps\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/codewave.com\/insights\/wp-content\/uploads\/2022\/08\/Angular-2-web-app-development.jpg\",\"datePublished\":\"2018-05-19T07:58:51+00:00\",\"dateModified\":\"2023-08-01T16:26:12+00:00\",\"author\":{\"@id\":\"https:\/\/codewave.com\/insights\/#\/schema\/person\/3657f01be1b168c52f7d5ba8996fd2f2\"},\"description\":\"Angular 2 can make web apps upto 5x faster compared to the traditional web development technologies & framework.\",\"breadcrumb\":{\"@id\":\"https:\/\/codewave.com\/insights\/angular-2-for-modern-fast-and-mobile-first-apps\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/codewave.com\/insights\/angular-2-for-modern-fast-and-mobile-first-apps\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/codewave.com\/insights\/angular-2-for-modern-fast-and-mobile-first-apps\/#primaryimage\",\"url\":\"https:\/\/codewave.com\/insights\/wp-content\/uploads\/2022\/08\/Angular-2-web-app-development.jpg\",\"contentUrl\":\"https:\/\/codewave.com\/insights\/wp-content\/uploads\/2022\/08\/Angular-2-web-app-development.jpg\",\"width\":1000,\"height\":700,\"caption\":\"Angular 2 web app development\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/codewave.com\/insights\/angular-2-for-modern-fast-and-mobile-first-apps\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/codewave.com\/insights\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Angular 2 for Modern, Fast and Mobile-First Apps\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/codewave.com\/insights\/#website\",\"url\":\"https:\/\/codewave.com\/insights\/\",\"name\":\"\",\"description\":\"Innovate with tech, design, culture\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/codewave.com\/insights\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/codewave.com\/insights\/#\/schema\/person\/3657f01be1b168c52f7d5ba8996fd2f2\",\"name\":\"Codewave\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/codewave.com\/insights\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/8eaea4760f144032645a66b5f0e21153?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/8eaea4760f144032645a66b5f0e21153?s=96&d=mm&r=g\",\"caption\":\"Codewave\"},\"description\":\"Codewave is a design thinking led digital transformation company enabling organisations with playful innovation using AI &amp; ML, IoT &amp; Edge, AR, VR, Cloud, Blockchain, and Data.\",\"sameAs\":[\"https:\/\/codewave.com\",\"https:\/\/www.facebook.com\/codewave.inc\",\"https:\/\/www.instagram.com\/codewavetech\/\",\"https:\/\/in.linkedin.com\/company\/codewave-inc\",\"https:\/\/x.com\/https:\/\/twitter.com\/codewave_inc\"],\"url\":\"https:\/\/codewave.com\/insights\/author\/codewaveinsdev\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Angular 2 for Modern, Fast and Mobile-First Apps","description":"Angular 2 can make web apps upto 5x faster compared to the traditional web development technologies & framework.","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:\/\/codewave.com\/insights\/angular-2-for-modern-fast-and-mobile-first-apps\/","og_locale":"en_US","og_type":"article","og_title":"Angular 2 for Modern, Fast and Mobile-First Apps","og_description":"Angular 2 can make web apps upto 5x faster compared to the traditional web development technologies & framework.","og_url":"https:\/\/codewave.com\/insights\/angular-2-for-modern-fast-and-mobile-first-apps\/","article_author":"https:\/\/www.facebook.com\/codewave.inc","article_published_time":"2018-05-19T07:58:51+00:00","article_modified_time":"2023-08-01T16:26:12+00:00","og_image":[{"width":1000,"height":700,"url":"https:\/\/codewave.com\/insights\/wp-content\/uploads\/2022\/08\/Angular-2-web-app-development.jpg","type":"image\/jpeg"}],"author":"Codewave","twitter_card":"summary_large_image","twitter_creator":"@https:\/\/twitter.com\/codewave_inc","twitter_misc":{"Written by":"Codewave","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/codewave.com\/insights\/angular-2-for-modern-fast-and-mobile-first-apps\/","url":"https:\/\/codewave.com\/insights\/angular-2-for-modern-fast-and-mobile-first-apps\/","name":"Angular 2 for Modern, Fast and Mobile-First Apps","isPartOf":{"@id":"https:\/\/codewave.com\/insights\/#website"},"primaryImageOfPage":{"@id":"https:\/\/codewave.com\/insights\/angular-2-for-modern-fast-and-mobile-first-apps\/#primaryimage"},"image":{"@id":"https:\/\/codewave.com\/insights\/angular-2-for-modern-fast-and-mobile-first-apps\/#primaryimage"},"thumbnailUrl":"https:\/\/codewave.com\/insights\/wp-content\/uploads\/2022\/08\/Angular-2-web-app-development.jpg","datePublished":"2018-05-19T07:58:51+00:00","dateModified":"2023-08-01T16:26:12+00:00","author":{"@id":"https:\/\/codewave.com\/insights\/#\/schema\/person\/3657f01be1b168c52f7d5ba8996fd2f2"},"description":"Angular 2 can make web apps upto 5x faster compared to the traditional web development technologies & framework.","breadcrumb":{"@id":"https:\/\/codewave.com\/insights\/angular-2-for-modern-fast-and-mobile-first-apps\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/codewave.com\/insights\/angular-2-for-modern-fast-and-mobile-first-apps\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/codewave.com\/insights\/angular-2-for-modern-fast-and-mobile-first-apps\/#primaryimage","url":"https:\/\/codewave.com\/insights\/wp-content\/uploads\/2022\/08\/Angular-2-web-app-development.jpg","contentUrl":"https:\/\/codewave.com\/insights\/wp-content\/uploads\/2022\/08\/Angular-2-web-app-development.jpg","width":1000,"height":700,"caption":"Angular 2 web app development"},{"@type":"BreadcrumbList","@id":"https:\/\/codewave.com\/insights\/angular-2-for-modern-fast-and-mobile-first-apps\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/codewave.com\/insights\/"},{"@type":"ListItem","position":2,"name":"Angular 2 for Modern, Fast and Mobile-First Apps"}]},{"@type":"WebSite","@id":"https:\/\/codewave.com\/insights\/#website","url":"https:\/\/codewave.com\/insights\/","name":"","description":"Innovate with tech, design, culture","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/codewave.com\/insights\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/codewave.com\/insights\/#\/schema\/person\/3657f01be1b168c52f7d5ba8996fd2f2","name":"Codewave","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/codewave.com\/insights\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/8eaea4760f144032645a66b5f0e21153?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/8eaea4760f144032645a66b5f0e21153?s=96&d=mm&r=g","caption":"Codewave"},"description":"Codewave is a design thinking led digital transformation company enabling organisations with playful innovation using AI &amp; ML, IoT &amp; Edge, AR, VR, Cloud, Blockchain, and Data.","sameAs":["https:\/\/codewave.com","https:\/\/www.facebook.com\/codewave.inc","https:\/\/www.instagram.com\/codewavetech\/","https:\/\/in.linkedin.com\/company\/codewave-inc","https:\/\/x.com\/https:\/\/twitter.com\/codewave_inc"],"url":"https:\/\/codewave.com\/insights\/author\/codewaveinsdev\/"}]}},"featured_image_src":"https:\/\/codewave.com\/insights\/wp-content\/uploads\/2022\/08\/Angular-2-web-app-development-600x400.jpg","featured_image_src_square":"https:\/\/codewave.com\/insights\/wp-content\/uploads\/2022\/08\/Angular-2-web-app-development-600x600.jpg","author_info":{"display_name":"Codewave","author_link":"https:\/\/codewave.com\/insights\/author\/codewaveinsdev\/"},"_links":{"self":[{"href":"https:\/\/codewave.com\/insights\/wp-json\/wp\/v2\/posts\/4641"}],"collection":[{"href":"https:\/\/codewave.com\/insights\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/codewave.com\/insights\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/codewave.com\/insights\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/codewave.com\/insights\/wp-json\/wp\/v2\/comments?post=4641"}],"version-history":[{"count":0,"href":"https:\/\/codewave.com\/insights\/wp-json\/wp\/v2\/posts\/4641\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/codewave.com\/insights\/wp-json\/wp\/v2\/media\/4648"}],"wp:attachment":[{"href":"https:\/\/codewave.com\/insights\/wp-json\/wp\/v2\/media?parent=4641"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/codewave.com\/insights\/wp-json\/wp\/v2\/categories?post=4641"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/codewave.com\/insights\/wp-json\/wp\/v2\/tags?post=4641"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}