{"id":22932,"date":"2018-10-05T11:52:23","date_gmt":"2018-10-05T11:52:23","guid":{"rendered":"http:\/\/kriscenttechnohub.com\/demo\/k_blog\/?p=22932"},"modified":"2025-01-14T12:47:16","modified_gmt":"2025-01-14T12:47:16","slug":"node-js-10-is-all-here-with-amazing-new-changes","status":"publish","type":"post","link":"https:\/\/kriscent.in\/blog\/node-js-10-is-all-here-with-amazing-new-changes\/","title":{"rendered":"Node.js 10 is All Here with Amazing New Changes"},"content":{"rendered":"\t\t<div data-elementor-type=\"wp-post\" data-elementor-id=\"22932\" class=\"elementor elementor-22932\">\n\t\t\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-5578af17 elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"5578af17\" data-element_type=\"section\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-3bb237c8\" data-id=\"3bb237c8\" data-element_type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\t\t<div class=\"elementor-element elementor-element-3c169590 elementor-widget elementor-widget-text-editor\" data-id=\"3c169590\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t<p>\n<span style=\"color: #000000;\">Node.js is a platform built on&nbsp;<a style=\"color: #000000;\" href=\"https:\/\/code.google.com\/p\/v8\/\" target=\"_blank\" rel=\"nofollow noopener\">Chrome&#8217;s JavaScript runtime<\/a>&nbsp;for easily building fast and scalable network applications. Node.js uses an event-driven, non-blocking I\/O model that makes it lightweight and efficient, perfect for data-intensive real-time applications that run across distributed devices.<br><\/span><span style=\"color: #000000;\"><br><\/span><\/p><p><span style=\"color: #000000;\">Node.js is an open source, cross-platform runtime environment for developing server-side and networking applications. Node.js applications are written in JavaScript, and can be run within the Node.js runtime on OS X, Microsoft Windows, and Linux. <\/span><span style=\"color: #000000;\">Node.js also provides a rich library of various JavaScript modules which simplifies the development of web applications using Node.js to a great extent.<\/span><\/p>\n<h6><strong><span style=\"color: #000000;\"><br><\/span><\/strong><\/h6>\n<h6><strong><span style=\"color: #000000;\">Features of Node.js-<\/span><\/strong><\/h6>\n<p><span style=\"color: #000000;\">Following are some of the important features that make Node.js the first choice of software architects.<\/span><\/p>\n<ul class=\"list\">\n<li><span style=\"color: #000000;\"><b>Asynchronous and Event Driven<\/b>&nbsp;\u2212 All APIs of Node.js library are asynchronous, that is, non-blocking. It essentially means a Node.js based server never waits for an API to return data. The server moves to the next API after calling it and a notification mechanism of Events of Node.js helps the server to get a response from the previous API call.<\/span><\/li>\n<\/ul>\n<ul>\n<li><span style=\"color: #000000;\"><b>Very Fast<\/b>&nbsp;\u2212 Being built on Google Chrome&#8217;s V8 JavaScript Engine, Node.js library is very fast in code execution.<\/span><\/li>\n<\/ul>\n<ul class=\"list\">\n<li><span style=\"color: #000000;\"><b>Single Threaded but Highly Scalable<\/b>&nbsp;\u2212 Node.js uses a single threaded model with event looping. Event mechanism helps the server to respond in a non-blocking way and makes the server highly scalable as opposed to traditional servers which create limited threads to handle requests. Node.js uses a single threaded program and the same program can provide service to a much larger number of requests than traditional servers like Apache HTTP Server.<\/span><\/li>\n<li><span style=\"color: #000000;\"><b>No Buffering<\/b>&nbsp;\u2212 Node.js applications never buffer any data. These applications simply output the data in chunks.<\/span><\/li>\n<li><span style=\"color: #000000;\"><b>License<\/b>&nbsp;\u2212 Node.js is released under the&nbsp;<a style=\"color: #000000;\" href=\"https:\/\/raw.githubusercontent.com\/joyent\/node\/v0.12.0\/LICENSE\" target=\"_blank\" rel=\"nofollow noopener\">MIT license<\/a>.<\/span><\/li>\n<\/ul>\n<div><br><\/div>\n<h6><strong><span style=\"color: #000000;\">Where to Use Node.js?<\/span><\/strong><\/h6>\n<p><span style=\"color: #000000;\">Following are the areas where Node.js is proving itself as a perfect technology partner.<\/span><\/p>\n<ul class=\"list\">\n<li><span style=\"color: #000000;\">I\/O bound Applications<\/span><\/li>\n<li><span style=\"color: #000000;\">Data Streaming Applications<\/span><\/li>\n<li><span style=\"color: #000000;\">Data Intensive Real-time Applications (DIRT)<\/span><\/li>\n<li><span style=\"color: #000000;\">JSON APIs based Applications<\/span><\/li>\n<li><span style=\"color: #000000;\">Single Page Applications<\/span><\/li>\n<\/ul>\n<div><br><\/div>\n<h6><span style=\"color: #000000;\"><strong>N-API-<\/strong><\/span><\/h6>\n<p><span style=\"color: #000000;\">It would take in N-API as the officially supported API layer and this will go far in supporting the framework to stably and evenly contribute to different development situations and user types, for building better server-side applications. Further adding to the benefit, N-API will help in bringing down the maintenance costs for native modules by reducing the intensity and amount of friction to allow the framework to effectively process production deployment. This simply means that there will be no module breakage anymore. To make it easy to manage and deploy and to assure it delivers consistent results across versions, N-API is implemented back to the versions 8.x and 6.x to make it safe for users with earlier versions to deploy and upgrade the framework safely and soundly.<\/span><\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<\/div>\n\t\t","protected":false},"excerpt":{"rendered":"<p>Node.js is a platform built on&nbsp;Chrome&#8217;s JavaScript runtime&nbsp;for easily building fast and scalable network applications. Node.js uses an event-driven, non-blocking I\/O model that makes it lightweight and efficient, perfect for data-intensive real-time applications that run across distributed devices. Node.js is an open source, cross-platform runtime environment for developing server-side and networking applications. Node.js applications are [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":23078,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[100],"tags":[],"class_list":["post-22932","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-development"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.9 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Node.js 10 is All Here with Amazing New Changes<\/title>\n<meta name=\"description\" content=\"Node.js is a platform built on&nbsp;Chrome&#039;s JavaScript runtime&nbsp;for easily building fast and scalable network applications. Node.js uses an\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/kriscent.in\/blog\/node-js-10-is-all-here-with-amazing-new-changes\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Node.js 10 is All Here with Amazing New Changes\" \/>\n<meta property=\"og:description\" content=\"Node.js is a platform built on&nbsp;Chrome&#039;s JavaScript runtime&nbsp;for easily building fast and scalable network applications. Node.js uses an\" \/>\n<meta property=\"og:url\" content=\"https:\/\/kriscent.in\/blog\/node-js-10-is-all-here-with-amazing-new-changes\/\" \/>\n<meta property=\"og:site_name\" content=\"Kriscent Blogs: Tech Updates, Trends &amp; Insights\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/KriscentTechnoHub\" \/>\n<meta property=\"article:published_time\" content=\"2018-10-05T11:52:23+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-01-14T12:47:16+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/kriscent.in\/blog\/wp-content\/uploads\/2021\/04\/5b7158e10c67d-1.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1900\" \/>\n\t<meta property=\"og:image:height\" content=\"1000\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Kriscent\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@Kriscent_KTH\" \/>\n<meta name=\"twitter:site\" content=\"@Kriscent_KTH\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Kriscent\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/kriscent.in\/blog\/node-js-10-is-all-here-with-amazing-new-changes\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/kriscent.in\/blog\/node-js-10-is-all-here-with-amazing-new-changes\/\"},\"author\":{\"name\":\"Kriscent\",\"@id\":\"https:\/\/kriscent.in\/blog\/#\/schema\/person\/0dc6803e09f66a6aa0fff6213ef09138\"},\"headline\":\"Node.js 10 is All Here with Amazing New Changes\",\"datePublished\":\"2018-10-05T11:52:23+00:00\",\"dateModified\":\"2025-01-14T12:47:16+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/kriscent.in\/blog\/node-js-10-is-all-here-with-amazing-new-changes\/\"},\"wordCount\":492,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/kriscent.in\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/kriscent.in\/blog\/node-js-10-is-all-here-with-amazing-new-changes\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/kriscent.in\/blog\/wp-content\/uploads\/2021\/04\/5b7158e10c67d-1.jpg\",\"articleSection\":[\"Development\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/kriscent.in\/blog\/node-js-10-is-all-here-with-amazing-new-changes\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/kriscent.in\/blog\/node-js-10-is-all-here-with-amazing-new-changes\/\",\"url\":\"https:\/\/kriscent.in\/blog\/node-js-10-is-all-here-with-amazing-new-changes\/\",\"name\":\"Node.js 10 is All Here with Amazing New Changes\",\"isPartOf\":{\"@id\":\"https:\/\/kriscent.in\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/kriscent.in\/blog\/node-js-10-is-all-here-with-amazing-new-changes\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/kriscent.in\/blog\/node-js-10-is-all-here-with-amazing-new-changes\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/kriscent.in\/blog\/wp-content\/uploads\/2021\/04\/5b7158e10c67d-1.jpg\",\"datePublished\":\"2018-10-05T11:52:23+00:00\",\"dateModified\":\"2025-01-14T12:47:16+00:00\",\"description\":\"Node.js is a platform built on&nbsp;Chrome's JavaScript runtime&nbsp;for easily building fast and scalable network applications. Node.js uses an\",\"breadcrumb\":{\"@id\":\"https:\/\/kriscent.in\/blog\/node-js-10-is-all-here-with-amazing-new-changes\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/kriscent.in\/blog\/node-js-10-is-all-here-with-amazing-new-changes\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/kriscent.in\/blog\/node-js-10-is-all-here-with-amazing-new-changes\/#primaryimage\",\"url\":\"https:\/\/kriscent.in\/blog\/wp-content\/uploads\/2021\/04\/5b7158e10c67d-1.jpg\",\"contentUrl\":\"https:\/\/kriscent.in\/blog\/wp-content\/uploads\/2021\/04\/5b7158e10c67d-1.jpg\",\"width\":1900,\"height\":1000},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/kriscent.in\/blog\/node-js-10-is-all-here-with-amazing-new-changes\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/kriscent.in\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Node.js 10 is All Here with Amazing New Changes\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/kriscent.in\/blog\/#website\",\"url\":\"https:\/\/kriscent.in\/blog\/\",\"name\":\"Kriscent Blogs: Tech Updates, Trends & Insights\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/kriscent.in\/blog\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/kriscent.in\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/kriscent.in\/blog\/#organization\",\"name\":\"Kriscent Blogs: Tech Updates, Trends & Insights\",\"url\":\"https:\/\/kriscent.in\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/kriscent.in\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/kriscent.in\/blog\/wp-content\/uploads\/2024\/04\/k-round-circle.png\",\"contentUrl\":\"https:\/\/kriscent.in\/blog\/wp-content\/uploads\/2024\/04\/k-round-circle.png\",\"width\":2300,\"height\":2300,\"caption\":\"Kriscent Blogs: Tech Updates, Trends & Insights\"},\"image\":{\"@id\":\"https:\/\/kriscent.in\/blog\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/KriscentTechnoHub\",\"https:\/\/x.com\/Kriscent_KTH\",\"https:\/\/www.instagram.com\/kriscenttechnohub\/\",\"https:\/\/in.linkedin.com\/company\/kriscenttechnohub\",\"https:\/\/in.pinterest.com\/Kriscent_KTH\/\",\"https:\/\/www.youtube.com\/channel\/UC_xjC_bZgHtGWwGfRN4Qnug\",\"https:\/\/play.google.com\/store\/apps\/dev?id=8463645970358251896&pli=1\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/kriscent.in\/blog\/#\/schema\/person\/0dc6803e09f66a6aa0fff6213ef09138\",\"name\":\"Kriscent\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/kriscent.in\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/ddb8dc2c59aecec5d8ea2788303245eb5eb374a2a67b30bb6bc8b108b0540812?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/ddb8dc2c59aecec5d8ea2788303245eb5eb374a2a67b30bb6bc8b108b0540812?s=96&d=mm&r=g\",\"caption\":\"Kriscent\"},\"sameAs\":[\"https:\/\/kriscent.in\/blog\/\"],\"url\":\"https:\/\/kriscent.in\/blog\/author\/kriscent\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Node.js 10 is All Here with Amazing New Changes","description":"Node.js is a platform built on&nbsp;Chrome's JavaScript runtime&nbsp;for easily building fast and scalable network applications. Node.js uses an","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:\/\/kriscent.in\/blog\/node-js-10-is-all-here-with-amazing-new-changes\/","og_locale":"en_US","og_type":"article","og_title":"Node.js 10 is All Here with Amazing New Changes","og_description":"Node.js is a platform built on&nbsp;Chrome's JavaScript runtime&nbsp;for easily building fast and scalable network applications. Node.js uses an","og_url":"https:\/\/kriscent.in\/blog\/node-js-10-is-all-here-with-amazing-new-changes\/","og_site_name":"Kriscent Blogs: Tech Updates, Trends &amp; Insights","article_publisher":"https:\/\/www.facebook.com\/KriscentTechnoHub","article_published_time":"2018-10-05T11:52:23+00:00","article_modified_time":"2025-01-14T12:47:16+00:00","og_image":[{"width":1900,"height":1000,"url":"https:\/\/kriscent.in\/blog\/wp-content\/uploads\/2021\/04\/5b7158e10c67d-1.jpg","type":"image\/jpeg"}],"author":"Kriscent","twitter_card":"summary_large_image","twitter_creator":"@Kriscent_KTH","twitter_site":"@Kriscent_KTH","twitter_misc":{"Written by":"Kriscent","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/kriscent.in\/blog\/node-js-10-is-all-here-with-amazing-new-changes\/#article","isPartOf":{"@id":"https:\/\/kriscent.in\/blog\/node-js-10-is-all-here-with-amazing-new-changes\/"},"author":{"name":"Kriscent","@id":"https:\/\/kriscent.in\/blog\/#\/schema\/person\/0dc6803e09f66a6aa0fff6213ef09138"},"headline":"Node.js 10 is All Here with Amazing New Changes","datePublished":"2018-10-05T11:52:23+00:00","dateModified":"2025-01-14T12:47:16+00:00","mainEntityOfPage":{"@id":"https:\/\/kriscent.in\/blog\/node-js-10-is-all-here-with-amazing-new-changes\/"},"wordCount":492,"commentCount":0,"publisher":{"@id":"https:\/\/kriscent.in\/blog\/#organization"},"image":{"@id":"https:\/\/kriscent.in\/blog\/node-js-10-is-all-here-with-amazing-new-changes\/#primaryimage"},"thumbnailUrl":"https:\/\/kriscent.in\/blog\/wp-content\/uploads\/2021\/04\/5b7158e10c67d-1.jpg","articleSection":["Development"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/kriscent.in\/blog\/node-js-10-is-all-here-with-amazing-new-changes\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/kriscent.in\/blog\/node-js-10-is-all-here-with-amazing-new-changes\/","url":"https:\/\/kriscent.in\/blog\/node-js-10-is-all-here-with-amazing-new-changes\/","name":"Node.js 10 is All Here with Amazing New Changes","isPartOf":{"@id":"https:\/\/kriscent.in\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/kriscent.in\/blog\/node-js-10-is-all-here-with-amazing-new-changes\/#primaryimage"},"image":{"@id":"https:\/\/kriscent.in\/blog\/node-js-10-is-all-here-with-amazing-new-changes\/#primaryimage"},"thumbnailUrl":"https:\/\/kriscent.in\/blog\/wp-content\/uploads\/2021\/04\/5b7158e10c67d-1.jpg","datePublished":"2018-10-05T11:52:23+00:00","dateModified":"2025-01-14T12:47:16+00:00","description":"Node.js is a platform built on&nbsp;Chrome's JavaScript runtime&nbsp;for easily building fast and scalable network applications. Node.js uses an","breadcrumb":{"@id":"https:\/\/kriscent.in\/blog\/node-js-10-is-all-here-with-amazing-new-changes\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/kriscent.in\/blog\/node-js-10-is-all-here-with-amazing-new-changes\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/kriscent.in\/blog\/node-js-10-is-all-here-with-amazing-new-changes\/#primaryimage","url":"https:\/\/kriscent.in\/blog\/wp-content\/uploads\/2021\/04\/5b7158e10c67d-1.jpg","contentUrl":"https:\/\/kriscent.in\/blog\/wp-content\/uploads\/2021\/04\/5b7158e10c67d-1.jpg","width":1900,"height":1000},{"@type":"BreadcrumbList","@id":"https:\/\/kriscent.in\/blog\/node-js-10-is-all-here-with-amazing-new-changes\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/kriscent.in\/blog\/"},{"@type":"ListItem","position":2,"name":"Node.js 10 is All Here with Amazing New Changes"}]},{"@type":"WebSite","@id":"https:\/\/kriscent.in\/blog\/#website","url":"https:\/\/kriscent.in\/blog\/","name":"Kriscent Blogs: Tech Updates, Trends & Insights","description":"","publisher":{"@id":"https:\/\/kriscent.in\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/kriscent.in\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/kriscent.in\/blog\/#organization","name":"Kriscent Blogs: Tech Updates, Trends & Insights","url":"https:\/\/kriscent.in\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/kriscent.in\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/kriscent.in\/blog\/wp-content\/uploads\/2024\/04\/k-round-circle.png","contentUrl":"https:\/\/kriscent.in\/blog\/wp-content\/uploads\/2024\/04\/k-round-circle.png","width":2300,"height":2300,"caption":"Kriscent Blogs: Tech Updates, Trends & Insights"},"image":{"@id":"https:\/\/kriscent.in\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/KriscentTechnoHub","https:\/\/x.com\/Kriscent_KTH","https:\/\/www.instagram.com\/kriscenttechnohub\/","https:\/\/in.linkedin.com\/company\/kriscenttechnohub","https:\/\/in.pinterest.com\/Kriscent_KTH\/","https:\/\/www.youtube.com\/channel\/UC_xjC_bZgHtGWwGfRN4Qnug","https:\/\/play.google.com\/store\/apps\/dev?id=8463645970358251896&pli=1"]},{"@type":"Person","@id":"https:\/\/kriscent.in\/blog\/#\/schema\/person\/0dc6803e09f66a6aa0fff6213ef09138","name":"Kriscent","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/kriscent.in\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/ddb8dc2c59aecec5d8ea2788303245eb5eb374a2a67b30bb6bc8b108b0540812?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/ddb8dc2c59aecec5d8ea2788303245eb5eb374a2a67b30bb6bc8b108b0540812?s=96&d=mm&r=g","caption":"Kriscent"},"sameAs":["https:\/\/kriscent.in\/blog\/"],"url":"https:\/\/kriscent.in\/blog\/author\/kriscent\/"}]}},"_links":{"self":[{"href":"https:\/\/kriscent.in\/blog\/wp-json\/wp\/v2\/posts\/22932","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/kriscent.in\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/kriscent.in\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/kriscent.in\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/kriscent.in\/blog\/wp-json\/wp\/v2\/comments?post=22932"}],"version-history":[{"count":16,"href":"https:\/\/kriscent.in\/blog\/wp-json\/wp\/v2\/posts\/22932\/revisions"}],"predecessor-version":[{"id":25646,"href":"https:\/\/kriscent.in\/blog\/wp-json\/wp\/v2\/posts\/22932\/revisions\/25646"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/kriscent.in\/blog\/wp-json\/wp\/v2\/media\/23078"}],"wp:attachment":[{"href":"https:\/\/kriscent.in\/blog\/wp-json\/wp\/v2\/media?parent=22932"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/kriscent.in\/blog\/wp-json\/wp\/v2\/categories?post=22932"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/kriscent.in\/blog\/wp-json\/wp\/v2\/tags?post=22932"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}