{"id":351,"date":"2021-02-03T03:58:00","date_gmt":"2021-02-03T03:58:00","guid":{"rendered":"https:\/\/codeflarelimited.com\/blog\/?p=351"},"modified":"2021-05-20T15:36:33","modified_gmt":"2021-05-20T14:36:33","slug":"node-js-working-with-modules","status":"publish","type":"post","link":"https:\/\/codeflarelimited.com\/blog\/node-js-working-with-modules\/","title":{"rendered":"Node.js: Working With Modules"},"content":{"rendered":"\n<p>Modules are generally set of functions that you can include in your application.<\/p>\n\n\n\n<p>These could be built-in functions that are part of the Node.js library or imported from a third-party library.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Built-in Modules<\/h3>\n\n\n\n<p>Node.js has a set of built-in modules which you can use without any further installation. <\/p>\n\n\n\n<p>These include:<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table><tbody><tr><th>Module<\/th><th>Description<\/th><\/tr><tr><td><a href=\"https:\/\/www.w3schools.com\/nodejs\/ref_assert.asp\">assert<\/a><\/td><td>Provides a set of assertion tests<\/td><\/tr><tr><td><a href=\"https:\/\/www.w3schools.com\/nodejs\/ref_buffer.asp\">buffer<\/a><\/td><td>To handle binary data<\/td><\/tr><tr><td>child_process<\/td><td>To run a child process<\/td><\/tr><tr><td><a href=\"https:\/\/www.w3schools.com\/nodejs\/ref_cluster.asp\">cluster<\/a><\/td><td>To split a single Node process into multiple processes<\/td><\/tr><tr><td><a href=\"https:\/\/www.w3schools.com\/nodejs\/ref_crypto.asp\">crypto<\/a><\/td><td>To handle OpenSSL cryptographic functions<\/td><\/tr><tr><td><a href=\"https:\/\/www.w3schools.com\/nodejs\/ref_dgram.asp\">dgram<\/a><\/td><td>Provides implementation of UDP datagram sockets<\/td><\/tr><tr><td><a href=\"https:\/\/www.w3schools.com\/nodejs\/ref_dns.asp\">dns<\/a><\/td><td>To do DNS lookups and name resolution functions<\/td><\/tr><tr><td>domain<\/td><td>Deprecated. To handle unhandled errors<\/td><\/tr><tr><td><a href=\"https:\/\/www.w3schools.com\/nodejs\/ref_events.asp\">events<\/a><\/td><td>To handle events<\/td><\/tr><tr><td><a href=\"https:\/\/www.w3schools.com\/nodejs\/ref_fs.asp\">fs<\/a><\/td><td>To handle the file system<\/td><\/tr><tr><td><a href=\"https:\/\/www.w3schools.com\/nodejs\/ref_http.asp\">http<\/a><\/td><td>To make Node.js act as an HTTP server<\/td><\/tr><tr><td><a href=\"https:\/\/www.w3schools.com\/nodejs\/ref_https.asp\">https<\/a><\/td><td>To make Node.js act as an HTTPS server.<\/td><\/tr><tr><td><a href=\"https:\/\/www.w3schools.com\/nodejs\/ref_net.asp\">net<\/a><\/td><td>To create servers and clients<\/td><\/tr><tr><td><a href=\"https:\/\/www.w3schools.com\/nodejs\/ref_os.asp\">os<\/a><\/td><td>Provides information about the operation system<\/td><\/tr><tr><td><a href=\"https:\/\/www.w3schools.com\/nodejs\/ref_path.asp\">path<\/a><\/td><td>To handle file paths<\/td><\/tr><tr><td>punycode<\/td><td>Deprecated. A character encoding scheme<\/td><\/tr><tr><td><a href=\"https:\/\/www.w3schools.com\/nodejs\/ref_querystring.asp\">querystring<\/a><\/td><td>To handle URL query strings<\/td><\/tr><tr><td><a href=\"https:\/\/www.w3schools.com\/nodejs\/ref_readline.asp\">readline<\/a><\/td><td>To handle readable streams one line at the time<\/td><\/tr><tr><td><a href=\"https:\/\/www.w3schools.com\/nodejs\/ref_stream.asp\">stream<\/a><\/td><td>To handle streaming data<\/td><\/tr><tr><td><a href=\"https:\/\/www.w3schools.com\/nodejs\/ref_string_decoder.asp\">string_decoder<\/a><\/td><td>To decode buffer objects into strings<\/td><\/tr><tr><td><a href=\"https:\/\/www.w3schools.com\/nodejs\/ref_timers.asp\">timers<\/a><\/td><td>To execute a function after a given number of milliseconds<\/td><\/tr><tr><td><a href=\"https:\/\/www.w3schools.com\/nodejs\/ref_tls.asp\">tls<\/a><\/td><td>To implement TLS and SSL protocols<\/td><\/tr><tr><td>tty<\/td><td>Provides classes used by a text terminal<\/td><\/tr><tr><td><a href=\"https:\/\/www.w3schools.com\/nodejs\/ref_url.asp\">url<\/a><\/td><td>To parse URL strings<\/td><\/tr><tr><td><a href=\"https:\/\/www.w3schools.com\/nodejs\/ref_util.asp\">util<\/a><\/td><td>To access utility functions<\/td><\/tr><tr><td>v8<\/td><td>To access information about V8 (the JavaScript engine)<\/td><\/tr><tr><td><a href=\"https:\/\/www.w3schools.com\/nodejs\/ref_vm.asp\">vm<\/a><\/td><td>To compile JavaScript code in a virtual machine<\/td><\/tr><tr><td><a href=\"https:\/\/www.w3schools.com\/nodejs\/ref_zlib.asp\">zlib<\/a><\/td><td>To compress or decompress files<\/td><\/tr><\/tbody><\/table><figcaption>Node.js built-in modules<\/figcaption><\/figure>\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\" href=\"https:\/\/codeflarelimited.com\/catalogue\/fullstack-js\" target=\"_blank\" rel=\"noreferrer noopener\">Learn full-stack Js<\/a><\/div>\n<\/div>\n\n\n\n<h2 class=\"wp-block-heading\">Using a Module<\/h2>\n\n\n\n<p>To use or require a module, we use the require() function followed by the name of the module<\/p>\n\n\n\n<p>Example:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code class=\"\">let http = require('http');<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">Creating Your Own Module<\/h3>\n\n\n\n<p>You can create your own modules and include them in your project.<\/p>\n\n\n\n<p>First, let us create a module called Time.js as follows<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code class=\"\">exports.mytTime = function() {\n    return Date();\n}<\/code><\/pre>\n\n\n\n<p>Next, let us create a main.js file where we can use this newly-created module<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"javascript\" class=\"language-javascript\">let http = require(\"http\");\nlet date = require('.\/Time');\n\nhttp.createServer(function (request, response) {\n   response.writeHead(200, {'Content-Type': 'text\/plain'});\n   \n   \/\/ Send the response body as \"Hello World\"\n   response.end(`Hello world. Thank you The time is ${date.mytTime()}`);\n}).listen(80);\n<\/code><\/pre>\n\n\n\n<p>Next we run the file on port 80 and we get the response printed on the screen.<\/p>\n\n\n\n<p>This is how we can create modules that we can use in our project<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Modules are generally set of functions that you can include in your application. These could be built-in functions<\/p>\n","protected":false},"author":1,"featured_media":353,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[80],"tags":[82,81],"class_list":["post-351","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-node-js","tag-built-in-modules-in-node-js","tag-modues"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Node.js: Working With Modules<\/title>\n<meta name=\"description\" content=\"Working with modules in Node.js. Modules are generally set of functions that you want to include in your application. These could be\" \/>\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\/node-js-working-with-modules\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Node.js: Working With Modules\" \/>\n<meta property=\"og:description\" content=\"Working with modules in Node.js. Modules are generally set of functions that you want to include in your application. These could be\" \/>\n<meta property=\"og:url\" content=\"https:\/\/codeflarelimited.com\/blog\/node-js-working-with-modules\/\" \/>\n<meta property=\"article:author\" content=\"https:\/\/facebook.com\/codeflretech\" \/>\n<meta property=\"article:published_time\" content=\"2021-02-03T03:58:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2021-05-20T14:36:33+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2021\/02\/modules-1.png\" \/>\n\t<meta property=\"og:image:width\" content=\"937\" \/>\n\t<meta property=\"og:image:height\" content=\"580\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"codeflare\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@codeflaretech\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"TechArticle\",\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/node-js-working-with-modules\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/node-js-working-with-modules\\\/\"},\"author\":{\"name\":\"codeflare\",\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/#\\\/schema\\\/person\\\/7e65653d49add95629f8c1053c5cd76a\"},\"headline\":\"Node.js: Working With Modules\",\"datePublished\":\"2021-02-03T03:58:00+00:00\",\"dateModified\":\"2021-05-20T14:36:33+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/node-js-working-with-modules\\\/\"},\"wordCount\":360,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/node-js-working-with-modules\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/wp-content\\\/uploads\\\/2021\\\/02\\\/modules-1.png\",\"keywords\":[\"built-in modules in node.js\",\"modues\"],\"articleSection\":[\"node.js\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/node-js-working-with-modules\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/node-js-working-with-modules\\\/\",\"url\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/node-js-working-with-modules\\\/\",\"name\":\"Node.js: Working With Modules\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/node-js-working-with-modules\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/node-js-working-with-modules\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/wp-content\\\/uploads\\\/2021\\\/02\\\/modules-1.png\",\"datePublished\":\"2021-02-03T03:58:00+00:00\",\"dateModified\":\"2021-05-20T14:36:33+00:00\",\"description\":\"Working with modules in Node.js. Modules are generally set of functions that you want to include in your application. These could be\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/node-js-working-with-modules\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/node-js-working-with-modules\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/node-js-working-with-modules\\\/#primaryimage\",\"url\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/wp-content\\\/uploads\\\/2021\\\/02\\\/modules-1.png\",\"contentUrl\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/wp-content\\\/uploads\\\/2021\\\/02\\\/modules-1.png\",\"width\":937,\"height\":580},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/node-js-working-with-modules\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"node.js\",\"item\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/node-js\\\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Node.js: Working With Modules\"}]},{\"@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\\\/7e65653d49add95629f8c1053c5cd76a\",\"name\":\"codeflare\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/59cef917c86d965eea581d2747f51bd6382003a68bfce7c8a4dfec98b4cd838d?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/59cef917c86d965eea581d2747f51bd6382003a68bfce7c8a4dfec98b4cd838d?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/59cef917c86d965eea581d2747f51bd6382003a68bfce7c8a4dfec98b4cd838d?s=96&d=mm&r=g\",\"caption\":\"codeflare\"},\"description\":\"Latest tech news and coding tips.\",\"sameAs\":[\"https:\\\/\\\/codeflarelimited.com\\\/blog\",\"https:\\\/\\\/facebook.com\\\/codeflretech\",\"https:\\\/\\\/instagram.com\\\/codeflaretech\",\"https:\\\/\\\/x.com\\\/codeflaretech\",\"https:\\\/\\\/www.youtube.com\\\/channel\\\/UCuBLtiYqsajHdqw0uyt7Ofw?sub_confirmation=1\"],\"url\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/author\\\/watcher\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Node.js: Working With Modules","description":"Working with modules in Node.js. Modules are generally set of functions that you want to include in your application. These could be","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\/node-js-working-with-modules\/","og_locale":"en_US","og_type":"article","og_title":"Node.js: Working With Modules","og_description":"Working with modules in Node.js. Modules are generally set of functions that you want to include in your application. These could be","og_url":"https:\/\/codeflarelimited.com\/blog\/node-js-working-with-modules\/","article_author":"https:\/\/facebook.com\/codeflretech","article_published_time":"2021-02-03T03:58:00+00:00","article_modified_time":"2021-05-20T14:36:33+00:00","og_image":[{"width":937,"height":580,"url":"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2021\/02\/modules-1.png","type":"image\/png"}],"author":"codeflare","twitter_card":"summary_large_image","twitter_creator":"@codeflaretech","schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"TechArticle","@id":"https:\/\/codeflarelimited.com\/blog\/node-js-working-with-modules\/#article","isPartOf":{"@id":"https:\/\/codeflarelimited.com\/blog\/node-js-working-with-modules\/"},"author":{"name":"codeflare","@id":"https:\/\/codeflarelimited.com\/blog\/#\/schema\/person\/7e65653d49add95629f8c1053c5cd76a"},"headline":"Node.js: Working With Modules","datePublished":"2021-02-03T03:58:00+00:00","dateModified":"2021-05-20T14:36:33+00:00","mainEntityOfPage":{"@id":"https:\/\/codeflarelimited.com\/blog\/node-js-working-with-modules\/"},"wordCount":360,"commentCount":0,"publisher":{"@id":"https:\/\/codeflarelimited.com\/blog\/#organization"},"image":{"@id":"https:\/\/codeflarelimited.com\/blog\/node-js-working-with-modules\/#primaryimage"},"thumbnailUrl":"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2021\/02\/modules-1.png","keywords":["built-in modules in node.js","modues"],"articleSection":["node.js"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/codeflarelimited.com\/blog\/node-js-working-with-modules\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/codeflarelimited.com\/blog\/node-js-working-with-modules\/","url":"https:\/\/codeflarelimited.com\/blog\/node-js-working-with-modules\/","name":"Node.js: Working With Modules","isPartOf":{"@id":"https:\/\/codeflarelimited.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/codeflarelimited.com\/blog\/node-js-working-with-modules\/#primaryimage"},"image":{"@id":"https:\/\/codeflarelimited.com\/blog\/node-js-working-with-modules\/#primaryimage"},"thumbnailUrl":"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2021\/02\/modules-1.png","datePublished":"2021-02-03T03:58:00+00:00","dateModified":"2021-05-20T14:36:33+00:00","description":"Working with modules in Node.js. Modules are generally set of functions that you want to include in your application. These could be","breadcrumb":{"@id":"https:\/\/codeflarelimited.com\/blog\/node-js-working-with-modules\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/codeflarelimited.com\/blog\/node-js-working-with-modules\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/codeflarelimited.com\/blog\/node-js-working-with-modules\/#primaryimage","url":"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2021\/02\/modules-1.png","contentUrl":"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2021\/02\/modules-1.png","width":937,"height":580},{"@type":"BreadcrumbList","@id":"https:\/\/codeflarelimited.com\/blog\/node-js-working-with-modules\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/codeflarelimited.com\/blog\/"},{"@type":"ListItem","position":2,"name":"node.js","item":"https:\/\/codeflarelimited.com\/blog\/node-js\/"},{"@type":"ListItem","position":3,"name":"Node.js: Working With Modules"}]},{"@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\/7e65653d49add95629f8c1053c5cd76a","name":"codeflare","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/59cef917c86d965eea581d2747f51bd6382003a68bfce7c8a4dfec98b4cd838d?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/59cef917c86d965eea581d2747f51bd6382003a68bfce7c8a4dfec98b4cd838d?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/59cef917c86d965eea581d2747f51bd6382003a68bfce7c8a4dfec98b4cd838d?s=96&d=mm&r=g","caption":"codeflare"},"description":"Latest tech news and coding tips.","sameAs":["https:\/\/codeflarelimited.com\/blog","https:\/\/facebook.com\/codeflretech","https:\/\/instagram.com\/codeflaretech","https:\/\/x.com\/codeflaretech","https:\/\/www.youtube.com\/channel\/UCuBLtiYqsajHdqw0uyt7Ofw?sub_confirmation=1"],"url":"https:\/\/codeflarelimited.com\/blog\/author\/watcher\/"}]}},"jetpack_featured_media_url":"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2021\/02\/modules-1.png","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/posts\/351","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\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/comments?post=351"}],"version-history":[{"count":2,"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/posts\/351\/revisions"}],"predecessor-version":[{"id":622,"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/posts\/351\/revisions\/622"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/media\/353"}],"wp:attachment":[{"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/media?parent=351"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/categories?post=351"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/tags?post=351"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}