{"id":355,"date":"2021-02-07T15:06:55","date_gmt":"2021-02-07T15:06:55","guid":{"rendered":"https:\/\/codeflarelimited.com\/blog\/?p=355"},"modified":"2021-05-20T14:40:10","modified_gmt":"2021-05-20T13:40:10","slug":"create-a-registration-form-with-node-js-mysql","status":"publish","type":"post","link":"https:\/\/codeflarelimited.com\/blog\/create-a-registration-form-with-node-js-mysql\/","title":{"rendered":"Create a Registration Form With Node.js &#038; MySQL"},"content":{"rendered":"\n<p>A registration form is used to collect data from potential users of your website.<\/p>\n\n\n\n<p>This is necessary, especially if you want these users to subscribe to a certain service in which they would have to login to access.<\/p>\n\n\n\n<p>In this tutorial, we will look at how to create a registration form using Node.js and MySQL.<\/p>\n\n\n\n<p>Let&#8217;s begin &#8230;<\/p>\n\n\n\n<p>First, we create a MySQL database<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"sql\" class=\"language-sql\">CREATE TABLE `users` (\n  `id` int(11) NOT NULL,\n  `first_name` varchar(100) NOT NULL,\n  `last_name` varchar(100) NOT NULL,\n  `email` varchar(100) NOT NULL,\n  `password` varchar(300) NOT NULL,\n  `date_time` datetime NOT NULL DEFAULT current_timestamp()\n) ENGINE=InnoDB DEFAULT CHARSET=latin1;\n<\/code><\/pre>\n\n\n\n<p>What we want to do next is to create a package.json file where will install the dependencies that are necessary for this project to work.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">\/\/Create a package.json file\nnpm init --y<\/code><\/pre>\n\n\n\n<p>We will install other dependencies as follows:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">npm install express --save \/\/ use express sever\nnpm install mysql \/\/use mysql module\nnpm install nodemon \/\/watch for file changes\nnpm install cryptr \/\/encrypt our password<\/code><\/pre>\n\n\n\n<p>Next we create an index.html file where we will write our HTML code<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"markup\" class=\"language-markup\">&lt;html&gt;  \n&lt;body&gt;  \n \n&lt;form action=\"\/register-controller\" method=\"POST\"&gt;  \nFirst Name: &lt;input type=\"text\" name=\"name\"&gt;  \n   \nEmail: &lt;input type=\"text\" name=\"email\"&gt;\nPaswword: &lt;input type=\"password\" name=\"password\"&gt;\n   \n&lt;input type=\"submit\" value=\"Submit\"&gt;  \n&lt;\/form&gt;\n&lt;\/body&gt;  \n&lt;\/html&gt;  \n<\/code><\/pre>\n\n\n\n<p>Next we create a config.js file where we will make the database connection.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"javascript\" class=\"language-javascript\">  var mysql      = require('mysql');\n  var connection = mysql.createPool({\n  host     : 'localhost',\n  user     : 'root',\n  password : '',\n  database : 'test2',\n\n  port: '8080'\n});\nconnection.getConnection(function(err){\nif(!err) {\n    console.log(\"Database is connected\");\n} else {\n    console.log(`Error while connecting with database ${err}` );\n}\n});\nmodule.exports = connection; \n<\/code><\/pre>\n\n\n\n<p>Moving forward, we create a controller file that will insert our collected data into the database.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"javascript\" class=\"language-javascript\">var Cryptr = require('cryptr');\nvar express=require(\"express\");\nvar connection = require('.\/config');\n cryptr = new Cryptr('myTotalySecretKey');\n \nmodule.exports.register=function(req,res){\n    var today = new Date();\n  var encryptedString = cryptr.encrypt(req.body.password);\n    var users={\n        \"name\":req.body.name,\n        \"email\":req.body.email,\n        \"password\":req.body.password,\n        \"created_at\":today,\n        \"updated_at\":today\n    }\n    connection.query('INSERT INTO users SET ?',users, function (error, results, fields) {\n      \/\/connection.release()\n      if (error) {\n        res.json({\n            status:false,\n            message:'there are some error with query'\n        })\n      }else{\n          res.json({\n            status:true,\n            data:results,\n            message:'user registered successfully'\n        })\n      }\n    });\n}\n<\/code><\/pre>\n\n\n\n<p>Your result should look like this:<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"210\" src=\"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2021\/02\/Screenshot-2021-02-07-at-15.52.50-1024x210.png\" alt=\"\" class=\"wp-image-357\" srcset=\"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2021\/02\/Screenshot-2021-02-07-at-15.52.50-1024x210.png 1024w, https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2021\/02\/Screenshot-2021-02-07-at-15.52.50-300x62.png 300w, https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2021\/02\/Screenshot-2021-02-07-at-15.52.50-768x158.png 768w, https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2021\/02\/Screenshot-2021-02-07-at-15.52.50.png 1168w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n\n\n\n<p><\/p>\n","protected":false},"excerpt":{"rendered":"<p>A registration form is used to collect data from potential users of your website. This is necessary, especially<\/p>\n","protected":false},"author":1,"featured_media":362,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[80],"tags":[85,84,83],"class_list":["post-355","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-node-js","tag-mysql","tag-node-js","tag-registration-form"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.3 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Create a Registration Form With Node.js &amp; MySQL<\/title>\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\/create-a-registration-form-with-node-js-mysql\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Create a Registration Form With Node.js &amp; MySQL\" \/>\n<meta property=\"og:description\" content=\"A registration form is used to collect data from potential users of your website. This is necessary, especially\" \/>\n<meta property=\"og:url\" content=\"https:\/\/codeflarelimited.com\/blog\/create-a-registration-form-with-node-js-mysql\/\" \/>\n<meta property=\"article:author\" content=\"https:\/\/facebook.com\/codeflretech\" \/>\n<meta property=\"article:published_time\" content=\"2021-02-07T15:06:55+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2021-05-20T13:40:10+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2021\/02\/Screenshot-2021-02-07-at-16.59.46.png\" \/>\n\t<meta property=\"og:image:width\" content=\"829\" \/>\n\t<meta property=\"og:image:height\" content=\"516\" \/>\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\\\/create-a-registration-form-with-node-js-mysql\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/create-a-registration-form-with-node-js-mysql\\\/\"},\"author\":{\"name\":\"codeflare\",\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/#\\\/schema\\\/person\\\/7e65653d49add95629f8c1053c5cd76a\"},\"headline\":\"Create a Registration Form With Node.js &#038; MySQL\",\"datePublished\":\"2021-02-07T15:06:55+00:00\",\"dateModified\":\"2021-05-20T13:40:10+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/create-a-registration-form-with-node-js-mysql\\\/\"},\"wordCount\":155,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/create-a-registration-form-with-node-js-mysql\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/wp-content\\\/uploads\\\/2021\\\/02\\\/Screenshot-2021-02-07-at-16.59.46.png\",\"keywords\":[\"mysql\",\"node.js\",\"registration form\"],\"articleSection\":[\"node.js\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/create-a-registration-form-with-node-js-mysql\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/create-a-registration-form-with-node-js-mysql\\\/\",\"url\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/create-a-registration-form-with-node-js-mysql\\\/\",\"name\":\"Create a Registration Form With Node.js & MySQL\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/create-a-registration-form-with-node-js-mysql\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/create-a-registration-form-with-node-js-mysql\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/wp-content\\\/uploads\\\/2021\\\/02\\\/Screenshot-2021-02-07-at-16.59.46.png\",\"datePublished\":\"2021-02-07T15:06:55+00:00\",\"dateModified\":\"2021-05-20T13:40:10+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/create-a-registration-form-with-node-js-mysql\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/create-a-registration-form-with-node-js-mysql\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/create-a-registration-form-with-node-js-mysql\\\/#primaryimage\",\"url\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/wp-content\\\/uploads\\\/2021\\\/02\\\/Screenshot-2021-02-07-at-16.59.46.png\",\"contentUrl\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/wp-content\\\/uploads\\\/2021\\\/02\\\/Screenshot-2021-02-07-at-16.59.46.png\",\"width\":829,\"height\":516,\"caption\":\"software development training in abuja using node.js and mysql\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/create-a-registration-form-with-node-js-mysql\\\/#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\":\"Create a Registration Form With Node.js &#038; MySQL\"}]},{\"@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":"Create a Registration Form With Node.js & MySQL","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\/create-a-registration-form-with-node-js-mysql\/","og_locale":"en_US","og_type":"article","og_title":"Create a Registration Form With Node.js & MySQL","og_description":"A registration form is used to collect data from potential users of your website. This is necessary, especially","og_url":"https:\/\/codeflarelimited.com\/blog\/create-a-registration-form-with-node-js-mysql\/","article_author":"https:\/\/facebook.com\/codeflretech","article_published_time":"2021-02-07T15:06:55+00:00","article_modified_time":"2021-05-20T13:40:10+00:00","og_image":[{"width":829,"height":516,"url":"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2021\/02\/Screenshot-2021-02-07-at-16.59.46.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\/create-a-registration-form-with-node-js-mysql\/#article","isPartOf":{"@id":"https:\/\/codeflarelimited.com\/blog\/create-a-registration-form-with-node-js-mysql\/"},"author":{"name":"codeflare","@id":"https:\/\/codeflarelimited.com\/blog\/#\/schema\/person\/7e65653d49add95629f8c1053c5cd76a"},"headline":"Create a Registration Form With Node.js &#038; MySQL","datePublished":"2021-02-07T15:06:55+00:00","dateModified":"2021-05-20T13:40:10+00:00","mainEntityOfPage":{"@id":"https:\/\/codeflarelimited.com\/blog\/create-a-registration-form-with-node-js-mysql\/"},"wordCount":155,"commentCount":0,"publisher":{"@id":"https:\/\/codeflarelimited.com\/blog\/#organization"},"image":{"@id":"https:\/\/codeflarelimited.com\/blog\/create-a-registration-form-with-node-js-mysql\/#primaryimage"},"thumbnailUrl":"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2021\/02\/Screenshot-2021-02-07-at-16.59.46.png","keywords":["mysql","node.js","registration form"],"articleSection":["node.js"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/codeflarelimited.com\/blog\/create-a-registration-form-with-node-js-mysql\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/codeflarelimited.com\/blog\/create-a-registration-form-with-node-js-mysql\/","url":"https:\/\/codeflarelimited.com\/blog\/create-a-registration-form-with-node-js-mysql\/","name":"Create a Registration Form With Node.js & MySQL","isPartOf":{"@id":"https:\/\/codeflarelimited.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/codeflarelimited.com\/blog\/create-a-registration-form-with-node-js-mysql\/#primaryimage"},"image":{"@id":"https:\/\/codeflarelimited.com\/blog\/create-a-registration-form-with-node-js-mysql\/#primaryimage"},"thumbnailUrl":"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2021\/02\/Screenshot-2021-02-07-at-16.59.46.png","datePublished":"2021-02-07T15:06:55+00:00","dateModified":"2021-05-20T13:40:10+00:00","breadcrumb":{"@id":"https:\/\/codeflarelimited.com\/blog\/create-a-registration-form-with-node-js-mysql\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/codeflarelimited.com\/blog\/create-a-registration-form-with-node-js-mysql\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/codeflarelimited.com\/blog\/create-a-registration-form-with-node-js-mysql\/#primaryimage","url":"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2021\/02\/Screenshot-2021-02-07-at-16.59.46.png","contentUrl":"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2021\/02\/Screenshot-2021-02-07-at-16.59.46.png","width":829,"height":516,"caption":"software development training in abuja using node.js and mysql"},{"@type":"BreadcrumbList","@id":"https:\/\/codeflarelimited.com\/blog\/create-a-registration-form-with-node-js-mysql\/#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":"Create a Registration Form With Node.js &#038; MySQL"}]},{"@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\/Screenshot-2021-02-07-at-16.59.46.png","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/posts\/355","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=355"}],"version-history":[{"count":2,"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/posts\/355\/revisions"}],"predecessor-version":[{"id":620,"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/posts\/355\/revisions\/620"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/media\/362"}],"wp:attachment":[{"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/media?parent=355"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/categories?post=355"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/tags?post=355"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}