{"id":3503,"date":"2022-09-22T00:09:38","date_gmt":"2022-09-21T19:09:38","guid":{"rendered":"https:\/\/www.edopedia.com\/blog\/?p=3503"},"modified":"2022-09-22T00:09:41","modified_gmt":"2022-09-21T19:09:41","slug":"show-alert-notification-messages-using-react-js-notyf-library","status":"publish","type":"post","link":"https:\/\/www.edopedia.com\/blog\/show-alert-notification-messages-using-react-js-notyf-library\/","title":{"rendered":"Show Alert Notification Messages Using React.js Notyf Library"},"content":{"rendered":"\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre class=\"CodeMirror\" data-setting=\"{&quot;showPanel&quot;:true,&quot;languageLabel&quot;:&quot;language&quot;,&quot;fullScreenButton&quot;:true,&quot;copyButton&quot;:true,&quot;mode&quot;:&quot;shell&quot;,&quot;mime&quot;:&quot;text\/x-sh&quot;,&quot;theme&quot;:&quot;material&quot;,&quot;lineNumbers&quot;:true,&quot;styleActiveLine&quot;:true,&quot;lineWrapping&quot;:false,&quot;readOnly&quot;:true,&quot;fileName&quot;:&quot;&quot;,&quot;language&quot;:&quot;Shell&quot;,&quot;maxHeight&quot;:&quot;400px&quot;,&quot;modeName&quot;:&quot;shell&quot;}\">npx create-react-app alertdemo<\/pre><\/div>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre class=\"CodeMirror\" data-setting=\"{&quot;showPanel&quot;:true,&quot;languageLabel&quot;:&quot;language&quot;,&quot;fullScreenButton&quot;:true,&quot;copyButton&quot;:true,&quot;mode&quot;:&quot;shell&quot;,&quot;mime&quot;:&quot;text\/x-sh&quot;,&quot;theme&quot;:&quot;material&quot;,&quot;lineNumbers&quot;:true,&quot;styleActiveLine&quot;:true,&quot;lineWrapping&quot;:false,&quot;readOnly&quot;:true,&quot;fileName&quot;:&quot;&quot;,&quot;language&quot;:&quot;Shell&quot;,&quot;maxHeight&quot;:&quot;400px&quot;,&quot;modeName&quot;:&quot;shell&quot;}\">cd alertdemo<\/pre><\/div>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre class=\"CodeMirror\" data-setting=\"{&quot;showPanel&quot;:true,&quot;languageLabel&quot;:&quot;language&quot;,&quot;fullScreenButton&quot;:true,&quot;copyButton&quot;:true,&quot;mode&quot;:&quot;shell&quot;,&quot;mime&quot;:&quot;text\/x-sh&quot;,&quot;theme&quot;:&quot;material&quot;,&quot;lineNumbers&quot;:true,&quot;styleActiveLine&quot;:true,&quot;lineWrapping&quot;:false,&quot;readOnly&quot;:true,&quot;fileName&quot;:&quot;&quot;,&quot;language&quot;:&quot;Shell&quot;,&quot;maxHeight&quot;:&quot;400px&quot;,&quot;modeName&quot;:&quot;shell&quot;}\">npm i notyf<\/pre><\/div>\n\n\n\n<p>Notyf is a minimalistic JavaScript library for toast notifications. It is responsive, A11Y compatible, dependency-free, and has a very lightweight footprint (~3KB). Notyf can be easily integrated with React, Angular, Aurelia, Vue, and Svelte.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Features<\/h2>\n\n\n\n<ul class=\"wp-block-list\"><li>Responsive<\/li><li>A11Y compatible<\/li><li>Strongly typed codebase (TypeScript Typings readily available)<\/li><li>4 types of bundles exposed: ES6, CommonJS, UMD, and IIFE (for vanilla, framework-free usage).<\/li><li>End-to-end testing with Cypress<\/li><li>Easily plugable to modern frameworks. Recipes available to integrate with React, Angular, Aurelia, Vue, and Svelte.<\/li><li>Optional ripple-like fancy revealing effect<\/li><li>Simple but highly extensible API. Create your own toast types and customize them.<\/li><li>Support to render custom HTML content within the toasts<\/li><li>Tiny footprint (&lt;3K gzipped)<\/li><li>Works on IE11<\/li><\/ul>\n\n\n\n<h2 class=\"wp-block-heading\">Usage in Browser<\/h2>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre class=\"CodeMirror\" data-setting=\"{&quot;showPanel&quot;:true,&quot;languageLabel&quot;:&quot;language&quot;,&quot;fullScreenButton&quot;:true,&quot;copyButton&quot;:true,&quot;mode&quot;:&quot;htmlmixed&quot;,&quot;mime&quot;:&quot;text\/html&quot;,&quot;theme&quot;:&quot;material&quot;,&quot;lineNumbers&quot;:true,&quot;styleActiveLine&quot;:true,&quot;lineWrapping&quot;:false,&quot;readOnly&quot;:true,&quot;fileName&quot;:&quot;&quot;,&quot;language&quot;:&quot;HTML&quot;,&quot;maxHeight&quot;:&quot;400px&quot;,&quot;modeName&quot;:&quot;html&quot;}\">&lt;html&gt;\n  &lt;head&gt;\n    ...\n    &lt;link rel=&quot;stylesheet&quot; href=&quot;https:\/\/cdn.jsdelivr.net\/npm\/notyf@3\/notyf.min.css&quot;&gt;\n  &lt;\/head&gt;\n  &lt;body&gt;\n    ...\n    &lt;script src=&quot;https:\/\/cdn.jsdelivr.net\/npm\/notyf@3\/notyf.min.js&quot;&gt;&lt;\/script&gt;\n  &lt;\/body&gt;\n&lt;\/html&gt;<\/pre><\/div>\n\n\n\n<h2 class=\"wp-block-heading\">Basic Alert Messages in JavaScript<\/h2>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre class=\"CodeMirror\" data-setting=\"{&quot;showPanel&quot;:true,&quot;languageLabel&quot;:&quot;language&quot;,&quot;fullScreenButton&quot;:true,&quot;copyButton&quot;:true,&quot;mode&quot;:&quot;javascript&quot;,&quot;mime&quot;:&quot;text\/javascript&quot;,&quot;theme&quot;:&quot;material&quot;,&quot;lineNumbers&quot;:true,&quot;styleActiveLine&quot;:true,&quot;lineWrapping&quot;:false,&quot;readOnly&quot;:true,&quot;fileName&quot;:&quot;&quot;,&quot;language&quot;:&quot;JavaScript&quot;,&quot;maxHeight&quot;:&quot;400px&quot;,&quot;modeName&quot;:&quot;js&quot;}\">\/\/ Create an instance of Notyf\nvar notyf = new Notyf();\n\n\/\/ Display an error notification\nnotyf.error('You must fill out the form before moving forward');\n\n\/\/ Display a success notification\nnotyf.success('Your changes have been successfully saved!');<\/pre><\/div>\n\n\n\n<h2 class=\"wp-block-heading\">Examples<\/h2>\n\n\n\n<h3 class=\"wp-block-heading\">Global Configuration<\/h3>\n\n\n\n<p>The following example configures Notyf with the following settings:<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li>1s duration<\/li><li>Render notifications in the top-right corner<\/li><li>New custom notification called \u2018warning\u2019 with a\u00a0<a href=\"https:\/\/google.github.io\/material-design-icons\/\">ligature material icon<\/a><\/li><li>Error notification with custom duration, color and dismiss button<\/li><\/ul>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre class=\"CodeMirror\" data-setting=\"{&quot;showPanel&quot;:true,&quot;languageLabel&quot;:&quot;language&quot;,&quot;fullScreenButton&quot;:true,&quot;copyButton&quot;:true,&quot;mode&quot;:&quot;javascript&quot;,&quot;mime&quot;:&quot;text\/javascript&quot;,&quot;theme&quot;:&quot;material&quot;,&quot;lineNumbers&quot;:true,&quot;styleActiveLine&quot;:true,&quot;lineWrapping&quot;:false,&quot;readOnly&quot;:true,&quot;fileName&quot;:&quot;&quot;,&quot;language&quot;:&quot;JavaScript&quot;,&quot;maxHeight&quot;:&quot;400px&quot;,&quot;modeName&quot;:&quot;js&quot;}\">const notyf = new Notyf({\n  duration: 1000,\n  position: {\n    x: 'right',\n    y: 'top',\n  },\n  types: [\n    {\n      type: 'warning',\n      background: 'orange',\n      icon: {\n        className: 'material-icons',\n        tagName: 'i',\n        text: 'warning'\n      }\n    },\n    {\n      type: 'error',\n      background: 'indianred',\n      duration: 2000,\n      dismissible: true\n    }\n  ]\n});<\/pre><\/div>\n\n\n\n<h3 class=\"wp-block-heading\">Custom toast type<\/h3>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre class=\"CodeMirror\" data-setting=\"{&quot;showPanel&quot;:true,&quot;languageLabel&quot;:&quot;language&quot;,&quot;fullScreenButton&quot;:true,&quot;copyButton&quot;:true,&quot;mode&quot;:&quot;javascript&quot;,&quot;mime&quot;:&quot;text\/javascript&quot;,&quot;theme&quot;:&quot;material&quot;,&quot;lineNumbers&quot;:true,&quot;styleActiveLine&quot;:true,&quot;lineWrapping&quot;:false,&quot;readOnly&quot;:true,&quot;fileName&quot;:&quot;&quot;,&quot;language&quot;:&quot;JavaScript&quot;,&quot;maxHeight&quot;:&quot;400px&quot;,&quot;modeName&quot;:&quot;js&quot;}\">const notyf = new Notyf({\n  types: [\n    {\n      type: 'info',\n      background: 'blue',\n      icon: false\n    }\n  ]\n});\n\nnotyf.open({\n  type: 'info',\n  message: 'Send us &lt;b&gt;an email&lt;\/b&gt; to get support'\n});<\/pre><\/div>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\">Full Source Code to Show Alert Notification Messages Using React.js Notyf Library<\/h2>\n\n\n\n<h3 class=\"wp-block-heading\">App.js<\/h3>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre class=\"CodeMirror\" data-setting=\"{&quot;showPanel&quot;:true,&quot;languageLabel&quot;:&quot;language&quot;,&quot;fullScreenButton&quot;:true,&quot;copyButton&quot;:true,&quot;mode&quot;:&quot;javascript&quot;,&quot;mime&quot;:&quot;text\/javascript&quot;,&quot;theme&quot;:&quot;material&quot;,&quot;lineNumbers&quot;:true,&quot;styleActiveLine&quot;:true,&quot;lineWrapping&quot;:false,&quot;readOnly&quot;:true,&quot;fileName&quot;:&quot;&quot;,&quot;language&quot;:&quot;JavaScript&quot;,&quot;maxHeight&quot;:&quot;400px&quot;,&quot;modeName&quot;:&quot;js&quot;}\">import React from 'react'\n\nimport { Notyf } from 'notyf';\nimport 'notyf\/notyf.min.css'; \/\/ for React, Vue and Svelte\n\nfunction App() {\n\n\n  const notyf = new Notyf();\n\n  const successAlert = () =&gt; {\n\n    notyf.success(&quot;This is a basic Alert&quot;)\n   \n  }\n\n  const errorAlert = () =&gt; {\n    let error = new Notyf({\n      duration:1000,\n      position:{\n        x:'right',\n        y:'top'\n      },\n      dismissible:true\n    })\n    error.error(&quot;This is an error Alert&quot;)\n  }\n\n  const customAlert = () =&gt; {\n    const notyf = new Notyf({\n      types: [\n        {\n          type: 'custom',\n          background: 'blue',\n          icon: false\n        }\n      ]\n    });\n    \n    notyf.open({\n      type: 'custom',\n      message: 'Send us &lt;b&gt;an email&lt;\/b&gt; to get support'\n    });\n  }\n  return (\n    &lt;div&gt;\n      &lt;button onClick={successAlert}&gt;Success Alert&lt;\/button&gt;\n      &lt;button onClick={errorAlert}&gt;Error Alert&lt;\/button&gt;\n      &lt;button onClick={customAlert}&gt;Custom Toast Alert&lt;\/button&gt;\n    &lt;\/div&gt;\n  )\n}\n\nexport default App<\/pre><\/div>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\">Screenshot<\/h2>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"499\" src=\"https:\/\/www.edopedia.com\/blog\/wp-content\/uploads\/2022\/09\/Show_Alert_Notification_React-1024x499.png\" alt=\"Show Alert Notification Messages Using React.js Notyf Library\" class=\"wp-image-3504\" srcset=\"https:\/\/www.edopedia.com\/blog\/wp-content\/uploads\/2022\/09\/Show_Alert_Notification_React-1024x499.png 1024w, https:\/\/www.edopedia.com\/blog\/wp-content\/uploads\/2022\/09\/Show_Alert_Notification_React-300x146.png 300w, https:\/\/www.edopedia.com\/blog\/wp-content\/uploads\/2022\/09\/Show_Alert_Notification_React-768x375.png 768w, https:\/\/www.edopedia.com\/blog\/wp-content\/uploads\/2022\/09\/Show_Alert_Notification_React.png 1536w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><figcaption>Show Alert Notification Messages Using React.js Notyf Library<\/figcaption><\/figure>\n","protected":false},"excerpt":{"rendered":"<p>Notyf is a minimalistic JavaScript library for toast notifications. It is responsive, A11Y compatible, dependency-free, and has a very lightweight footprint (~3KB). Notyf can be easily integrated with React, Angular, Aurelia, Vue, and Svelte. Features Responsive A11Y compatible Strongly typed codebase (TypeScript Typings readily available) 4 types of bundles exposed: ES6, CommonJS, UMD, and IIFE &#8230; <a title=\"Show Alert Notification Messages Using React.js Notyf Library\" class=\"read-more\" href=\"https:\/\/www.edopedia.com\/blog\/show-alert-notification-messages-using-react-js-notyf-library\/\" aria-label=\"Read more about Show Alert Notification Messages Using React.js Notyf Library\">Read more<\/a><\/p>\n","protected":false},"author":1,"featured_media":1762,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[112],"tags":[],"class_list":["post-3503","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-tutorials"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.2 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Show Alert Notification Messages Using React.js Notyf Library<\/title>\n<meta name=\"description\" content=\"npx create-react-app alertdemo cd alertdemo npm i notyf Notyf is a minimalistic JavaScript library for toast notifications. It is responsive, A11Y\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.edopedia.com\/blog\/show-alert-notification-messages-using-react-js-notyf-library\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Show Alert Notification Messages Using React.js Notyf Library\" \/>\n<meta property=\"og:description\" content=\"npx create-react-app alertdemo cd alertdemo npm i notyf Notyf is a minimalistic JavaScript library for toast notifications. It is responsive, A11Y\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.edopedia.com\/blog\/show-alert-notification-messages-using-react-js-notyf-library\/\" \/>\n<meta property=\"og:site_name\" content=\"Edopedia\" \/>\n<meta property=\"article:author\" content=\"trulyfurqan\" \/>\n<meta property=\"article:published_time\" content=\"2022-09-21T19:09:38+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-09-21T19:09:41+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.edopedia.com\/blog\/wp-content\/uploads\/2022\/09\/Show_Alert_Notification_React-1024x499.png\" \/>\n<meta name=\"author\" content=\"Furqan\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Furqan\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Show Alert Notification Messages Using React.js Notyf Library","description":"npx create-react-app alertdemo cd alertdemo npm i notyf Notyf is a minimalistic JavaScript library for toast notifications. It is responsive, A11Y","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:\/\/www.edopedia.com\/blog\/show-alert-notification-messages-using-react-js-notyf-library\/","og_locale":"en_US","og_type":"article","og_title":"Show Alert Notification Messages Using React.js Notyf Library","og_description":"npx create-react-app alertdemo cd alertdemo npm i notyf Notyf is a minimalistic JavaScript library for toast notifications. It is responsive, A11Y","og_url":"https:\/\/www.edopedia.com\/blog\/show-alert-notification-messages-using-react-js-notyf-library\/","og_site_name":"Edopedia","article_author":"trulyfurqan","article_published_time":"2022-09-21T19:09:38+00:00","article_modified_time":"2022-09-21T19:09:41+00:00","og_image":[{"url":"https:\/\/www.edopedia.com\/blog\/wp-content\/uploads\/2022\/09\/Show_Alert_Notification_React-1024x499.png","type":"","width":"","height":""}],"author":"Furqan","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Furqan","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.edopedia.com\/blog\/show-alert-notification-messages-using-react-js-notyf-library\/#article","isPartOf":{"@id":"https:\/\/www.edopedia.com\/blog\/show-alert-notification-messages-using-react-js-notyf-library\/"},"author":{"name":"Furqan","@id":"https:\/\/www.edopedia.com\/blog\/#\/schema\/person\/3951cb19e3aa56df09e408c98aa02339"},"headline":"Show Alert Notification Messages Using React.js Notyf Library","datePublished":"2022-09-21T19:09:38+00:00","dateModified":"2022-09-21T19:09:41+00:00","mainEntityOfPage":{"@id":"https:\/\/www.edopedia.com\/blog\/show-alert-notification-messages-using-react-js-notyf-library\/"},"wordCount":199,"commentCount":0,"publisher":{"@id":"https:\/\/www.edopedia.com\/blog\/#organization"},"image":{"@id":"https:\/\/www.edopedia.com\/blog\/show-alert-notification-messages-using-react-js-notyf-library\/#primaryimage"},"thumbnailUrl":"https:\/\/www.edopedia.com\/blog\/wp-content\/uploads\/2022\/02\/default_featured_image.jpg","articleSection":["Tutorials"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.edopedia.com\/blog\/show-alert-notification-messages-using-react-js-notyf-library\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.edopedia.com\/blog\/show-alert-notification-messages-using-react-js-notyf-library\/","url":"https:\/\/www.edopedia.com\/blog\/show-alert-notification-messages-using-react-js-notyf-library\/","name":"Show Alert Notification Messages Using React.js Notyf Library","isPartOf":{"@id":"https:\/\/www.edopedia.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.edopedia.com\/blog\/show-alert-notification-messages-using-react-js-notyf-library\/#primaryimage"},"image":{"@id":"https:\/\/www.edopedia.com\/blog\/show-alert-notification-messages-using-react-js-notyf-library\/#primaryimage"},"thumbnailUrl":"https:\/\/www.edopedia.com\/blog\/wp-content\/uploads\/2022\/02\/default_featured_image.jpg","datePublished":"2022-09-21T19:09:38+00:00","dateModified":"2022-09-21T19:09:41+00:00","description":"npx create-react-app alertdemo cd alertdemo npm i notyf Notyf is a minimalistic JavaScript library for toast notifications. It is responsive, A11Y","breadcrumb":{"@id":"https:\/\/www.edopedia.com\/blog\/show-alert-notification-messages-using-react-js-notyf-library\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.edopedia.com\/blog\/show-alert-notification-messages-using-react-js-notyf-library\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.edopedia.com\/blog\/show-alert-notification-messages-using-react-js-notyf-library\/#primaryimage","url":"https:\/\/www.edopedia.com\/blog\/wp-content\/uploads\/2022\/02\/default_featured_image.jpg","contentUrl":"https:\/\/www.edopedia.com\/blog\/wp-content\/uploads\/2022\/02\/default_featured_image.jpg","width":880,"height":495,"caption":"Default Featured Image"},{"@type":"BreadcrumbList","@id":"https:\/\/www.edopedia.com\/blog\/show-alert-notification-messages-using-react-js-notyf-library\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.edopedia.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Show Alert Notification Messages Using React.js Notyf Library"}]},{"@type":"WebSite","@id":"https:\/\/www.edopedia.com\/blog\/#website","url":"https:\/\/www.edopedia.com\/blog\/","name":"Edopedia","description":"Coding\/Programming Blog","publisher":{"@id":"https:\/\/www.edopedia.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.edopedia.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.edopedia.com\/blog\/#organization","name":"Edopedia","url":"https:\/\/www.edopedia.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.edopedia.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/www.edopedia.com\/blog\/wp-content\/uploads\/2017\/10\/edopedia_icon_text_10.jpg","contentUrl":"https:\/\/www.edopedia.com\/blog\/wp-content\/uploads\/2017\/10\/edopedia_icon_text_10.jpg","width":400,"height":100,"caption":"Edopedia"},"image":{"@id":"https:\/\/www.edopedia.com\/blog\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/www.edopedia.com\/blog\/#\/schema\/person\/3951cb19e3aa56df09e408c98aa02339","name":"Furqan","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.edopedia.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/e5e68aef3ad8f0b83d56f4953c512c8e57bd2e6dc64daec33b5d0495d9058f51?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/e5e68aef3ad8f0b83d56f4953c512c8e57bd2e6dc64daec33b5d0495d9058f51?s=96&d=mm&r=g","caption":"Furqan"},"description":"Well. I've been working for the past three years as a web designer and developer. I have successfully created websites for small to medium sized companies as part of my freelance career. During that time I've also completed my bachelor's in Information Technology.","sameAs":["http:\/\/www.edopedia.com\/blog\/","trulyfurqan"],"url":"https:\/\/www.edopedia.com\/blog\/author\/furqan\/"}]}},"_links":{"self":[{"href":"https:\/\/www.edopedia.com\/blog\/wp-json\/wp\/v2\/posts\/3503","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.edopedia.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.edopedia.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.edopedia.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.edopedia.com\/blog\/wp-json\/wp\/v2\/comments?post=3503"}],"version-history":[{"count":1,"href":"https:\/\/www.edopedia.com\/blog\/wp-json\/wp\/v2\/posts\/3503\/revisions"}],"predecessor-version":[{"id":3505,"href":"https:\/\/www.edopedia.com\/blog\/wp-json\/wp\/v2\/posts\/3503\/revisions\/3505"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.edopedia.com\/blog\/wp-json\/wp\/v2\/media\/1762"}],"wp:attachment":[{"href":"https:\/\/www.edopedia.com\/blog\/wp-json\/wp\/v2\/media?parent=3503"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.edopedia.com\/blog\/wp-json\/wp\/v2\/categories?post=3503"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.edopedia.com\/blog\/wp-json\/wp\/v2\/tags?post=3503"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}