{"id":2328,"date":"2024-08-14T11:07:10","date_gmt":"2024-08-14T10:07:10","guid":{"rendered":"https:\/\/codeflarelimited.com\/blog\/?p=2328"},"modified":"2024-08-14T12:19:06","modified_gmt":"2024-08-14T11:19:06","slug":"javascript-in-progressive-web-apps","status":"publish","type":"post","link":"https:\/\/codeflarelimited.com\/blog\/javascript-in-progressive-web-apps\/","title":{"rendered":"The Role of JavaScript in Progressive Web Apps"},"content":{"rendered":"\n<p>Progressive Web Apps (PWAs) blend the best of web and mobile apps, offering a seamless user experience across different platforms. At the heart of PWAs is JavaScript, a versatile language that powers much of the functionality and user experience enhancements in these modern applications. In this article, we will explore the crucial role of JavaScript in Progressive web Apps and how it contributes to their functionality and performance.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>What Are Progressive Web Apps?<\/strong><\/h3>\n\n\n\n<p>Before diving into JavaScript\u2019s role, let\u2019s briefly cover what PWAs are. Progressive Web Apps are web applications that utilize modern web capabilities to deliver an app-like experience to users. They aim to provide reliable, fast, and engaging experiences regardless of network conditions. Key characteristics of PWAs include:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Responsive Design:<\/strong> Adapt to any screen size.<\/li>\n\n\n\n<li><strong>Offline Capabilities:<\/strong> Function even when the user is offline.<\/li>\n\n\n\n<li><strong>App-Like Experience:<\/strong> Mimic native app interactions and navigation.<\/li>\n\n\n\n<li><strong>Push Notifications:<\/strong> Keep users engaged with timely updates.<\/li>\n\n\n\n<li><strong>Home Screen Installation:<\/strong> Allow users to install the app on their home screens.<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>The Crucial Role of JavaScript in PWAs<\/strong><\/h3>\n\n\n\n<p>JavaScript enhances PWAs by enabling dynamic functionality and interaction. Here\u2019s a breakdown of how JavaScript contributes to different aspects of PWAs:<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li><strong>Service Workers:<\/strong> JavaScript\u2019s role in service workers is pivotal. Service workers are scripts that run in the background, separate from the web page, allowing PWAs to handle network requests, cache resources, and provide offline functionality. They enable features like background sync and push notifications, making it possible for PWAs to work seamlessly even when offline or on unreliable networks.<\/li>\n<\/ol>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"javascript\" class=\"language-javascript\">\/\/ Registering a service worker\nif ('serviceWorker' in navigator) {\n  navigator.serviceWorker.register('\/service-worker.js')\n    .then((registration) =&gt; {\n      console.log('Service Worker registered with scope:', registration.scope);\n    }).catch((error) =&gt; {\n      console.error('Service Worker registration failed:', error);\n    });\n}\n<\/code><\/pre>\n\n\n\n<p><strong>2. Caching Strategies:<\/strong> JavaScript is used to implement caching strategies in service workers. By defining which assets to cache and how to handle network requests, JavaScript helps improve the performance and reliability of PWAs. For example, a caching strategy might involve storing frequently accessed files locally so that users can access them instantly, even when offline.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"javascript\" class=\"language-javascript\">\/\/ Adding files to cache\nself.addEventListener('install', (event) =&gt; {\n  event.waitUntil(\n    caches.open('my-cache').then((cache) =&gt; {\n      return cache.addAll([\n        '\/',\n        '\/index.html',\n        '\/styles.css',\n        '\/script.js'\n      ]);\n    })\n  );\n});\n<\/code><\/pre>\n\n\n\n<p><strong>3. Push Notifications:<\/strong> JavaScript enables PWAs to send push notifications to users. This is achieved through the Push API, which allows applications to send updates to users even when the app is not open. JavaScript handles the subscription process, manages notification permissions, and displays notifications.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"javascript\" class=\"language-javascript\">\/\/ Requesting notification permission\nNotification.requestPermission().then((permission) =&gt; {\n  if (permission === 'granted') {\n    console.log('Notification permission granted.');\n  } else {\n    console.log('Notification permission denied.');\n  }\n});\n<\/code><\/pre>\n\n\n\n<p><strong>4. Responsive Design and User Interactions:<\/strong> JavaScript enhances user interactions and responsiveness in PWAs. It enables dynamic content updates, interactive elements, and smooth animations, which contribute to a more engaging and native-like experience. For instance, JavaScript can handle user input, validate forms, and manage UI updates in real-time.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"javascript\" class=\"language-javascript\">\/\/ Handling form submission\ndocument.querySelector('form').addEventListener('submit', (event) =&gt; {\n  event.preventDefault();\n  \/\/ Handle form submission logic\n});\n<\/code><\/pre>\n\n\n\n<p><strong>5. Web App Manifest:<\/strong> JavaScript interacts with the Web App Manifest, a JSON file that provides metadata about the PWA. While the manifest itself is not written in JavaScript, JavaScript can dynamically modify or interact with it to influence how the PWA is displayed and behaves when installed on a user\u2019s device.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"javascript\" class=\"language-javascript\">\/\/ Dynamically updating the Web App Manifest\nconst link = document.createElement('link');\nlink.rel = 'manifest';\nlink.href = '\/manifest.json';\ndocument.head.appendChild(link);\n<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Conclusion<\/strong><\/h3>\n\n\n\n<p>JavaScript plays a fundamental role in making Progressive Web Apps functional, interactive, and reliable. From managing service workers and caching strategies to enabling push notifications and responsive designs, JavaScript\u2019s capabilities drive the performance and user experience of PWAs. By leveraging JavaScript, developers can create PWAs that offer a seamless, app-like experience across various devices and network conditions.<\/p>\n\n\n\n<p>As the web continues to evolve, the role of JavaScript in PWAs will likely grow, introducing new features and capabilities that enhance the user experience and push the boundaries of what\u2019s possible with web technologies.<\/p>\n\n\n\n<p><a href=\"https:\/\/codeflarelimited.com\/blog\/the-power-of-javascript-design-patterns\/\">The power of JavaScript design pattern<\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Progressive Web Apps (PWAs) blend the best of web and mobile apps, offering a seamless user experience across<\/p>\n","protected":false},"author":3,"featured_media":2335,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[24],"tags":[99],"class_list":["post-2328","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-programming","tag-software-development"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>JavaScript in Progressive Web Apps<\/title>\n<meta name=\"description\" content=\"Explore the essential role of JavaScript in Progressive Web Apps (PWAs). Discover how JavaScript drives key features like service workers etc\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/codeflarelimited.com\/blog\/javascript-in-progressive-web-apps\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"JavaScript in Progressive Web Apps\" \/>\n<meta property=\"og:description\" content=\"Explore the essential role of JavaScript in Progressive Web Apps (PWAs). Discover how JavaScript drives key features like service workers etc\" \/>\n<meta property=\"og:url\" content=\"https:\/\/codeflarelimited.com\/blog\/javascript-in-progressive-web-apps\/\" \/>\n<meta property=\"article:published_time\" content=\"2024-08-14T10:07:10+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-08-14T11:19:06+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2024\/08\/IMG-20240813-WA0010.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1120\" \/>\n\t<meta property=\"og:image:height\" content=\"630\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Kene Samuel\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"TechArticle\",\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/javascript-in-progressive-web-apps\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/javascript-in-progressive-web-apps\\\/\"},\"author\":{\"name\":\"Kene Samuel\",\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/#\\\/schema\\\/person\\\/c501609bab46c16807eb32106074f206\"},\"headline\":\"The Role of JavaScript in Progressive Web Apps\",\"datePublished\":\"2024-08-14T10:07:10+00:00\",\"dateModified\":\"2024-08-14T11:19:06+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/javascript-in-progressive-web-apps\\\/\"},\"wordCount\":563,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/javascript-in-progressive-web-apps\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/wp-content\\\/uploads\\\/2024\\\/08\\\/IMG-20240813-WA0010.jpg\",\"keywords\":[\"software development\"],\"articleSection\":[\"programming\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/javascript-in-progressive-web-apps\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/javascript-in-progressive-web-apps\\\/\",\"url\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/javascript-in-progressive-web-apps\\\/\",\"name\":\"JavaScript in Progressive Web Apps\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/javascript-in-progressive-web-apps\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/javascript-in-progressive-web-apps\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/wp-content\\\/uploads\\\/2024\\\/08\\\/IMG-20240813-WA0010.jpg\",\"datePublished\":\"2024-08-14T10:07:10+00:00\",\"dateModified\":\"2024-08-14T11:19:06+00:00\",\"description\":\"Explore the essential role of JavaScript in Progressive Web Apps (PWAs). Discover how JavaScript drives key features like service workers etc\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/javascript-in-progressive-web-apps\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/javascript-in-progressive-web-apps\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/javascript-in-progressive-web-apps\\\/#primaryimage\",\"url\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/wp-content\\\/uploads\\\/2024\\\/08\\\/IMG-20240813-WA0010.jpg\",\"contentUrl\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/wp-content\\\/uploads\\\/2024\\\/08\\\/IMG-20240813-WA0010.jpg\",\"width\":1120,\"height\":630},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/javascript-in-progressive-web-apps\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"programming\",\"item\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/programming\\\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"The Role of JavaScript in Progressive Web Apps\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/\",\"name\":\"\",\"description\":\"Sustainable solutions\",\"publisher\":{\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/#organization\",\"name\":\"Codeflare Limited\",\"url\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/11\\\/codeflare.png\",\"contentUrl\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/11\\\/codeflare.png\",\"width\":1040,\"height\":263,\"caption\":\"Codeflare Limited\"},\"image\":{\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/#\\\/schema\\\/person\\\/c501609bab46c16807eb32106074f206\",\"name\":\"Kene Samuel\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/3e1716cd715a5b5491e1f2da373b52f2f73aeb37d268baff34719116e386d848?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/3e1716cd715a5b5491e1f2da373b52f2f73aeb37d268baff34719116e386d848?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/3e1716cd715a5b5491e1f2da373b52f2f73aeb37d268baff34719116e386d848?s=96&d=mm&r=g\",\"caption\":\"Kene Samuel\"},\"url\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/author\\\/kene\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"JavaScript in Progressive Web Apps","description":"Explore the essential role of JavaScript in Progressive Web Apps (PWAs). Discover how JavaScript drives key features like service workers etc","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:\/\/codeflarelimited.com\/blog\/javascript-in-progressive-web-apps\/","og_locale":"en_US","og_type":"article","og_title":"JavaScript in Progressive Web Apps","og_description":"Explore the essential role of JavaScript in Progressive Web Apps (PWAs). Discover how JavaScript drives key features like service workers etc","og_url":"https:\/\/codeflarelimited.com\/blog\/javascript-in-progressive-web-apps\/","article_published_time":"2024-08-14T10:07:10+00:00","article_modified_time":"2024-08-14T11:19:06+00:00","og_image":[{"width":1120,"height":630,"url":"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2024\/08\/IMG-20240813-WA0010.jpg","type":"image\/jpeg"}],"author":"Kene Samuel","twitter_card":"summary_large_image","schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"TechArticle","@id":"https:\/\/codeflarelimited.com\/blog\/javascript-in-progressive-web-apps\/#article","isPartOf":{"@id":"https:\/\/codeflarelimited.com\/blog\/javascript-in-progressive-web-apps\/"},"author":{"name":"Kene Samuel","@id":"https:\/\/codeflarelimited.com\/blog\/#\/schema\/person\/c501609bab46c16807eb32106074f206"},"headline":"The Role of JavaScript in Progressive Web Apps","datePublished":"2024-08-14T10:07:10+00:00","dateModified":"2024-08-14T11:19:06+00:00","mainEntityOfPage":{"@id":"https:\/\/codeflarelimited.com\/blog\/javascript-in-progressive-web-apps\/"},"wordCount":563,"commentCount":0,"publisher":{"@id":"https:\/\/codeflarelimited.com\/blog\/#organization"},"image":{"@id":"https:\/\/codeflarelimited.com\/blog\/javascript-in-progressive-web-apps\/#primaryimage"},"thumbnailUrl":"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2024\/08\/IMG-20240813-WA0010.jpg","keywords":["software development"],"articleSection":["programming"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/codeflarelimited.com\/blog\/javascript-in-progressive-web-apps\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/codeflarelimited.com\/blog\/javascript-in-progressive-web-apps\/","url":"https:\/\/codeflarelimited.com\/blog\/javascript-in-progressive-web-apps\/","name":"JavaScript in Progressive Web Apps","isPartOf":{"@id":"https:\/\/codeflarelimited.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/codeflarelimited.com\/blog\/javascript-in-progressive-web-apps\/#primaryimage"},"image":{"@id":"https:\/\/codeflarelimited.com\/blog\/javascript-in-progressive-web-apps\/#primaryimage"},"thumbnailUrl":"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2024\/08\/IMG-20240813-WA0010.jpg","datePublished":"2024-08-14T10:07:10+00:00","dateModified":"2024-08-14T11:19:06+00:00","description":"Explore the essential role of JavaScript in Progressive Web Apps (PWAs). Discover how JavaScript drives key features like service workers etc","breadcrumb":{"@id":"https:\/\/codeflarelimited.com\/blog\/javascript-in-progressive-web-apps\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/codeflarelimited.com\/blog\/javascript-in-progressive-web-apps\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/codeflarelimited.com\/blog\/javascript-in-progressive-web-apps\/#primaryimage","url":"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2024\/08\/IMG-20240813-WA0010.jpg","contentUrl":"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2024\/08\/IMG-20240813-WA0010.jpg","width":1120,"height":630},{"@type":"BreadcrumbList","@id":"https:\/\/codeflarelimited.com\/blog\/javascript-in-progressive-web-apps\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/codeflarelimited.com\/blog\/"},{"@type":"ListItem","position":2,"name":"programming","item":"https:\/\/codeflarelimited.com\/blog\/programming\/"},{"@type":"ListItem","position":3,"name":"The Role of JavaScript in Progressive Web Apps"}]},{"@type":"WebSite","@id":"https:\/\/codeflarelimited.com\/blog\/#website","url":"https:\/\/codeflarelimited.com\/blog\/","name":"","description":"Sustainable solutions","publisher":{"@id":"https:\/\/codeflarelimited.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/codeflarelimited.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/codeflarelimited.com\/blog\/#organization","name":"Codeflare Limited","url":"https:\/\/codeflarelimited.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/codeflarelimited.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2020\/11\/codeflare.png","contentUrl":"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2020\/11\/codeflare.png","width":1040,"height":263,"caption":"Codeflare Limited"},"image":{"@id":"https:\/\/codeflarelimited.com\/blog\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/codeflarelimited.com\/blog\/#\/schema\/person\/c501609bab46c16807eb32106074f206","name":"Kene Samuel","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/3e1716cd715a5b5491e1f2da373b52f2f73aeb37d268baff34719116e386d848?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/3e1716cd715a5b5491e1f2da373b52f2f73aeb37d268baff34719116e386d848?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/3e1716cd715a5b5491e1f2da373b52f2f73aeb37d268baff34719116e386d848?s=96&d=mm&r=g","caption":"Kene Samuel"},"url":"https:\/\/codeflarelimited.com\/blog\/author\/kene\/"}]}},"jetpack_featured_media_url":"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2024\/08\/IMG-20240813-WA0010.jpg","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/posts\/2328","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/users\/3"}],"replies":[{"embeddable":true,"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/comments?post=2328"}],"version-history":[{"count":3,"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/posts\/2328\/revisions"}],"predecessor-version":[{"id":2340,"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/posts\/2328\/revisions\/2340"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/media\/2335"}],"wp:attachment":[{"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/media?parent=2328"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/categories?post=2328"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/tags?post=2328"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}