{"id":211,"date":"2022-05-30T06:50:27","date_gmt":"2022-05-30T06:50:27","guid":{"rendered":"https:\/\/phptraininginchennai.co.in\/blog\/?p=211"},"modified":"2022-05-30T06:51:42","modified_gmt":"2022-05-30T06:51:42","slug":"how-does-node-js-works-behind-the-scene","status":"publish","type":"post","link":"https:\/\/phptraininginchennai.co.in\/blog\/how-does-node-js-works-behind-the-scene\/","title":{"rendered":"How Does Node JS Works Behind The Scene"},"content":{"rendered":"<p style=\"text-align: justify;\"><b><a href=\"https:\/\/phptraininginchennai.co.in\/blog\/wp-content\/uploads\/2022\/05\/HOW-DOES-NODE-JS-WORKS.jpg\"><img loading=\"lazy\" decoding=\"async\" class=\"alignnone wp-image-212 size-full\" src=\"https:\/\/phptraininginchennai.co.in\/blog\/wp-content\/uploads\/2022\/05\/HOW-DOES-NODE-JS-WORKS.jpg\" alt=\"How Does Node JS Works\" width=\"800\" height=\"400\" srcset=\"https:\/\/phptraininginchennai.co.in\/blog\/wp-content\/uploads\/2022\/05\/HOW-DOES-NODE-JS-WORKS.jpg 800w, https:\/\/phptraininginchennai.co.in\/blog\/wp-content\/uploads\/2022\/05\/HOW-DOES-NODE-JS-WORKS-300x150.jpg 300w, https:\/\/phptraininginchennai.co.in\/blog\/wp-content\/uploads\/2022\/05\/HOW-DOES-NODE-JS-WORKS-768x384.jpg 768w\" sizes=\"auto, (max-width: 800px) 100vw, 800px\" \/><\/a>Introduction<\/b><\/p>\n<p style=\"text-align: justify;\"><span style=\"font-weight: 400;\">Based on the Node.js framework, Node.js is a JavaScript runtime environment. This means that we can run JavaScript outside of the browser using Node.js. In this article, let&#8217;s discuss Node JS and how it works in detail. Join <\/span><a href=\"https:\/\/www.fita.in\/node-js-training-in-chennai\/\"><b>Node JS Training in Chennai<\/b><\/a><span style=\"font-weight: 400;\"> with Certification and Placement Support for your career advancement if you&#8217;re interested in learning more about Node Js.<\/span><\/p>\n<p style=\"text-align: justify;\"><b>What is Node JS?<\/b><\/p>\n<p style=\"text-align: justify;\"><span style=\"font-weight: 400;\">Node JS is an open-source server environment. It is completely free and uses JavaScript on the server. It also runs on multiple platforms like Windows, Unix, and Linux. Node JS can generate the dynamic page content, and it also creates, opens, read, write and close the files on the server. It also modifies data in our databases.<\/span><\/p>\n<p style=\"text-align: justify;\"><b>How Does Node JS Work?<\/b><\/p>\n<p style=\"text-align: justify;\"><span style=\"font-weight: 400;\">If you want to understand the working methodology of Node Js, you have to focus on three things they are,<\/span><\/p>\n<ul style=\"text-align: justify;\">\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Node JS Architecture<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Node JS Application<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">The Event Loop<\/span><\/li>\n<\/ul>\n<p style=\"text-align: justify;\"><strong>Node JS Architecture<\/strong><\/p>\n<p style=\"text-align: justify;\"><span style=\"font-weight: 400;\">Node.js is made up of two components: the Chrome V8 engine, which is developed in C++, and Libuv, a multi-platform C library that supports asynchronous I\/O based events on event loops and thread loops. It&#8217;s crucial to understand that, although We can still use Node.js in pure JavaScript because it is built with the V8 engine and Libuv, which are written in C or C++. join <\/span><a href=\"https:\/\/www.fita.in\/node-js-training-in-chennai\/\"><b>Node JS Course in Chennai<\/b><\/a><span style=\"font-weight: 400;\"> with certification and placement support for your career enhancement.<\/span><\/p>\n<p style=\"text-align: justify;\"><b>Node JS Application<\/b><\/p>\n<p style=\"text-align: justify;\"><span style=\"font-weight: 400;\">Now that we&#8217;ve learned about the Node.js architecture, it&#8217;s time to learn how a Node.js application works, which involves understanding the concept of Node.js being single-threaded and non-blocking. First and foremost, what is a thread? A thread is a set of programming instructions that can operate independently in a computer&#8217;s processor, and every process we wish to run as its own thread to run the programming instructions, and the process can have multiple threads.<\/span><\/p>\n<p style=\"text-align: justify;\"><span style=\"font-weight: 400;\">However, keep in mind that Node.js applications run on a single thread, which means that whether the Node.js application is used by five people or 5 million users, it will only run on a single thread, enabling the Node.js application to be blocked. Asynchronous code must be used everywhere with callback methods to keep the Node.js application running. Because asynchronous code runs in the background, and the callback is executed as soon as the promise is resolved, whereas synchronous code blocks the entire application until it is finished executing.<\/span><\/p>\n<p style=\"text-align: justify;\"><span style=\"font-weight: 400;\">However, we can still use synchronous code at some point in our program, and that point is before we join the Event-loop.<\/span><\/p>\n<p style=\"text-align: justify;\"><span style=\"font-weight: 400;\">The event loop is a loop that allows Node.js applications to do non-blocking asynchronous I\/O activities. All asynchronous code is handled and executed within the event loop, and before that, we can use our synchronous code, which is referred to as Top-Level code in this case.<\/span><\/p>\n<p style=\"text-align: justify;\"><b>The Event Loop<\/b><\/p>\n<p style=\"text-align: justify;\"><span style=\"font-weight: 400;\">keep in mind that the event loop is where all of our asynchronous code is executed. For a moment, look back to the first paragraph and read it again since we&#8217;ll be talking about Node.js&#8217; third feature, which is that it&#8217;s built on an event-driven architecture. The event-entire loop&#8217;s concept is based on this architecture, or these three steps, which are listed below.<\/span><\/p>\n<ul style=\"text-align: justify;\">\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Events can be emitted by an asynchronous function, such as receiving an HTTP request, reading a file with the fileSystem module, or completing a timer. Depending on our programming, these events may differ.<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">After that, they are picked up by Event-loop.<\/span><\/li>\n<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">The callback functions are used (based on your code).<\/span><\/li>\n<\/ul>\n<p style=\"text-align: justify;\"><span style=\"font-weight: 400;\">Attention Reader! Join <\/span><a href=\"https:\/\/www.fita.in\/node-js-training-in-chennai\/\"><b>Node JS Training Institute in Chennai<\/b><\/a><span style=\"font-weight: 400;\"> with certifications and placement support for your career enhancement.<\/span><\/p>\n<p style=\"text-align: justify;\"><b>Conclusion<\/b><\/p>\n<p style=\"text-align: justify;\"><span style=\"font-weight: 400;\">I hope that this blog has provided you with some useful information about Node JS. If you are interested in learning Node JS, join <strong><a href=\"https:\/\/www.fita.in\/\">FITA Academy<\/a><\/strong>, which offers training from real-world working specialists as well as certification and job placement assistance to help you advance your career.<\/span><\/p>\n<p>Also read this blog, <a href=\"https:\/\/www.androidtraininginchennai.co.in\/importance-of-ui-ux-design\/\"><strong>Importance Of UI UX Design<\/strong><\/a> to understand why UI UX is Important.<\/p>\n<p style=\"text-align: justify;\">\n","protected":false},"excerpt":{"rendered":"<p>Introduction Based on the Node.js framework, Node.js is a JavaScript runtime environment. This means that we can run JavaScript outside of the browser using Node.js. In this article, let&#8217;s discuss Node JS and how it works in detail. Join Node &hellip; <a href=\"https:\/\/phptraininginchennai.co.in\/blog\/how-does-node-js-works-behind-the-scene\/\">Continued<\/a><\/p>\n","protected":false},"author":2,"featured_media":212,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[89],"tags":[95,92,93,91,94,90],"class_list":["post-211","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-node-js","tag-node-js-certification","tag-node-js-class","tag-node-js-classes","tag-node-js-course","tag-node-js-courses","tag-node-js-training"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.3 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How Does Node JS Works Behind The Scene<\/title>\n<meta name=\"description\" content=\"If you want to understand the Node JS then read this blog, This blog is all about the working methodology of Node JS.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/phptraininginchennai.co.in\/blog\/how-does-node-js-works-behind-the-scene\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How Does Node JS Works Behind The Scene\" \/>\n<meta property=\"og:description\" content=\"If you want to understand the Node JS then read this blog, This blog is all about the working methodology of Node JS.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/phptraininginchennai.co.in\/blog\/how-does-node-js-works-behind-the-scene\/\" \/>\n<meta property=\"og:site_name\" content=\"PHP Tutorials\" \/>\n<meta property=\"article:published_time\" content=\"2022-05-30T06:50:27+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-05-30T06:51:42+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/phptraininginchennai.co.in\/blog\/wp-content\/uploads\/2022\/05\/HOW-DOES-NODE-JS-WORKS.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"800\" \/>\n\t<meta property=\"og:image:height\" content=\"400\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"phptraininginchennai\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"phptraininginchennai\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/phptraininginchennai.co.in\\\/blog\\\/how-does-node-js-works-behind-the-scene\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/phptraininginchennai.co.in\\\/blog\\\/how-does-node-js-works-behind-the-scene\\\/\"},\"author\":{\"name\":\"phptraininginchennai\",\"@id\":\"https:\\\/\\\/phptraininginchennai.co.in\\\/blog\\\/#\\\/schema\\\/person\\\/2bab118bcb6295259e675efd02162908\"},\"headline\":\"How Does Node JS Works Behind The Scene\",\"datePublished\":\"2022-05-30T06:50:27+00:00\",\"dateModified\":\"2022-05-30T06:51:42+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/phptraininginchennai.co.in\\\/blog\\\/how-does-node-js-works-behind-the-scene\\\/\"},\"wordCount\":704,\"commentCount\":0,\"image\":{\"@id\":\"https:\\\/\\\/phptraininginchennai.co.in\\\/blog\\\/how-does-node-js-works-behind-the-scene\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/phptraininginchennai.co.in\\\/blog\\\/wp-content\\\/uploads\\\/2022\\\/05\\\/HOW-DOES-NODE-JS-WORKS.jpg\",\"keywords\":[\"Node JS Certification\",\"Node JS Class\",\"Node JS Classes\",\"Node JS Course\",\"Node JS Courses\",\"Node JS Training\"],\"articleSection\":[\"Node JS\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/phptraininginchennai.co.in\\\/blog\\\/how-does-node-js-works-behind-the-scene\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/phptraininginchennai.co.in\\\/blog\\\/how-does-node-js-works-behind-the-scene\\\/\",\"url\":\"https:\\\/\\\/phptraininginchennai.co.in\\\/blog\\\/how-does-node-js-works-behind-the-scene\\\/\",\"name\":\"How Does Node JS Works Behind The Scene\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/phptraininginchennai.co.in\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/phptraininginchennai.co.in\\\/blog\\\/how-does-node-js-works-behind-the-scene\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/phptraininginchennai.co.in\\\/blog\\\/how-does-node-js-works-behind-the-scene\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/phptraininginchennai.co.in\\\/blog\\\/wp-content\\\/uploads\\\/2022\\\/05\\\/HOW-DOES-NODE-JS-WORKS.jpg\",\"datePublished\":\"2022-05-30T06:50:27+00:00\",\"dateModified\":\"2022-05-30T06:51:42+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/phptraininginchennai.co.in\\\/blog\\\/#\\\/schema\\\/person\\\/2bab118bcb6295259e675efd02162908\"},\"description\":\"If you want to understand the Node JS then read this blog, This blog is all about the working methodology of Node JS.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/phptraininginchennai.co.in\\\/blog\\\/how-does-node-js-works-behind-the-scene\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/phptraininginchennai.co.in\\\/blog\\\/how-does-node-js-works-behind-the-scene\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/phptraininginchennai.co.in\\\/blog\\\/how-does-node-js-works-behind-the-scene\\\/#primaryimage\",\"url\":\"https:\\\/\\\/phptraininginchennai.co.in\\\/blog\\\/wp-content\\\/uploads\\\/2022\\\/05\\\/HOW-DOES-NODE-JS-WORKS.jpg\",\"contentUrl\":\"https:\\\/\\\/phptraininginchennai.co.in\\\/blog\\\/wp-content\\\/uploads\\\/2022\\\/05\\\/HOW-DOES-NODE-JS-WORKS.jpg\",\"width\":800,\"height\":400,\"caption\":\"How Does Node JS Works\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/phptraininginchennai.co.in\\\/blog\\\/how-does-node-js-works-behind-the-scene\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/phptraininginchennai.co.in\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How Does Node JS Works Behind The Scene\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/phptraininginchennai.co.in\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/phptraininginchennai.co.in\\\/blog\\\/\",\"name\":\"PHP Tutorials\",\"description\":\"Latest articles on PHP\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/phptraininginchennai.co.in\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/phptraininginchennai.co.in\\\/blog\\\/#\\\/schema\\\/person\\\/2bab118bcb6295259e675efd02162908\",\"name\":\"phptraininginchennai\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/16d83ed8157d92d71f9df385405e9a4f459de489a247ab113f81f2473bc49bd3?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/16d83ed8157d92d71f9df385405e9a4f459de489a247ab113f81f2473bc49bd3?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/16d83ed8157d92d71f9df385405e9a4f459de489a247ab113f81f2473bc49bd3?s=96&d=mm&r=g\",\"caption\":\"phptraininginchennai\"},\"url\":\"https:\\\/\\\/phptraininginchennai.co.in\\\/blog\\\/author\\\/phptraininginchennai\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How Does Node JS Works Behind The Scene","description":"If you want to understand the Node JS then read this blog, This blog is all about the working methodology of Node JS.","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:\/\/phptraininginchennai.co.in\/blog\/how-does-node-js-works-behind-the-scene\/","og_locale":"en_US","og_type":"article","og_title":"How Does Node JS Works Behind The Scene","og_description":"If you want to understand the Node JS then read this blog, This blog is all about the working methodology of Node JS.","og_url":"https:\/\/phptraininginchennai.co.in\/blog\/how-does-node-js-works-behind-the-scene\/","og_site_name":"PHP Tutorials","article_published_time":"2022-05-30T06:50:27+00:00","article_modified_time":"2022-05-30T06:51:42+00:00","og_image":[{"width":800,"height":400,"url":"https:\/\/phptraininginchennai.co.in\/blog\/wp-content\/uploads\/2022\/05\/HOW-DOES-NODE-JS-WORKS.jpg","type":"image\/jpeg"}],"author":"phptraininginchennai","twitter_misc":{"Written by":"phptraininginchennai","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/phptraininginchennai.co.in\/blog\/how-does-node-js-works-behind-the-scene\/#article","isPartOf":{"@id":"https:\/\/phptraininginchennai.co.in\/blog\/how-does-node-js-works-behind-the-scene\/"},"author":{"name":"phptraininginchennai","@id":"https:\/\/phptraininginchennai.co.in\/blog\/#\/schema\/person\/2bab118bcb6295259e675efd02162908"},"headline":"How Does Node JS Works Behind The Scene","datePublished":"2022-05-30T06:50:27+00:00","dateModified":"2022-05-30T06:51:42+00:00","mainEntityOfPage":{"@id":"https:\/\/phptraininginchennai.co.in\/blog\/how-does-node-js-works-behind-the-scene\/"},"wordCount":704,"commentCount":0,"image":{"@id":"https:\/\/phptraininginchennai.co.in\/blog\/how-does-node-js-works-behind-the-scene\/#primaryimage"},"thumbnailUrl":"https:\/\/phptraininginchennai.co.in\/blog\/wp-content\/uploads\/2022\/05\/HOW-DOES-NODE-JS-WORKS.jpg","keywords":["Node JS Certification","Node JS Class","Node JS Classes","Node JS Course","Node JS Courses","Node JS Training"],"articleSection":["Node JS"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/phptraininginchennai.co.in\/blog\/how-does-node-js-works-behind-the-scene\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/phptraininginchennai.co.in\/blog\/how-does-node-js-works-behind-the-scene\/","url":"https:\/\/phptraininginchennai.co.in\/blog\/how-does-node-js-works-behind-the-scene\/","name":"How Does Node JS Works Behind The Scene","isPartOf":{"@id":"https:\/\/phptraininginchennai.co.in\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/phptraininginchennai.co.in\/blog\/how-does-node-js-works-behind-the-scene\/#primaryimage"},"image":{"@id":"https:\/\/phptraininginchennai.co.in\/blog\/how-does-node-js-works-behind-the-scene\/#primaryimage"},"thumbnailUrl":"https:\/\/phptraininginchennai.co.in\/blog\/wp-content\/uploads\/2022\/05\/HOW-DOES-NODE-JS-WORKS.jpg","datePublished":"2022-05-30T06:50:27+00:00","dateModified":"2022-05-30T06:51:42+00:00","author":{"@id":"https:\/\/phptraininginchennai.co.in\/blog\/#\/schema\/person\/2bab118bcb6295259e675efd02162908"},"description":"If you want to understand the Node JS then read this blog, This blog is all about the working methodology of Node JS.","breadcrumb":{"@id":"https:\/\/phptraininginchennai.co.in\/blog\/how-does-node-js-works-behind-the-scene\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/phptraininginchennai.co.in\/blog\/how-does-node-js-works-behind-the-scene\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/phptraininginchennai.co.in\/blog\/how-does-node-js-works-behind-the-scene\/#primaryimage","url":"https:\/\/phptraininginchennai.co.in\/blog\/wp-content\/uploads\/2022\/05\/HOW-DOES-NODE-JS-WORKS.jpg","contentUrl":"https:\/\/phptraininginchennai.co.in\/blog\/wp-content\/uploads\/2022\/05\/HOW-DOES-NODE-JS-WORKS.jpg","width":800,"height":400,"caption":"How Does Node JS Works"},{"@type":"BreadcrumbList","@id":"https:\/\/phptraininginchennai.co.in\/blog\/how-does-node-js-works-behind-the-scene\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/phptraininginchennai.co.in\/blog\/"},{"@type":"ListItem","position":2,"name":"How Does Node JS Works Behind The Scene"}]},{"@type":"WebSite","@id":"https:\/\/phptraininginchennai.co.in\/blog\/#website","url":"https:\/\/phptraininginchennai.co.in\/blog\/","name":"PHP Tutorials","description":"Latest articles on PHP","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/phptraininginchennai.co.in\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/phptraininginchennai.co.in\/blog\/#\/schema\/person\/2bab118bcb6295259e675efd02162908","name":"phptraininginchennai","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/16d83ed8157d92d71f9df385405e9a4f459de489a247ab113f81f2473bc49bd3?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/16d83ed8157d92d71f9df385405e9a4f459de489a247ab113f81f2473bc49bd3?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/16d83ed8157d92d71f9df385405e9a4f459de489a247ab113f81f2473bc49bd3?s=96&d=mm&r=g","caption":"phptraininginchennai"},"url":"https:\/\/phptraininginchennai.co.in\/blog\/author\/phptraininginchennai\/"}]}},"_links":{"self":[{"href":"https:\/\/phptraininginchennai.co.in\/blog\/wp-json\/wp\/v2\/posts\/211","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/phptraininginchennai.co.in\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/phptraininginchennai.co.in\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/phptraininginchennai.co.in\/blog\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/phptraininginchennai.co.in\/blog\/wp-json\/wp\/v2\/comments?post=211"}],"version-history":[{"count":2,"href":"https:\/\/phptraininginchennai.co.in\/blog\/wp-json\/wp\/v2\/posts\/211\/revisions"}],"predecessor-version":[{"id":214,"href":"https:\/\/phptraininginchennai.co.in\/blog\/wp-json\/wp\/v2\/posts\/211\/revisions\/214"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/phptraininginchennai.co.in\/blog\/wp-json\/wp\/v2\/media\/212"}],"wp:attachment":[{"href":"https:\/\/phptraininginchennai.co.in\/blog\/wp-json\/wp\/v2\/media?parent=211"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/phptraininginchennai.co.in\/blog\/wp-json\/wp\/v2\/categories?post=211"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/phptraininginchennai.co.in\/blog\/wp-json\/wp\/v2\/tags?post=211"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}