{"id":18436,"date":"2013-10-24T15:01:58","date_gmt":"2013-10-24T07:01:58","guid":{"rendered":"https:\/\/www.hongkiat.com\/blog\/?p=18436"},"modified":"2023-08-08T00:01:55","modified_gmt":"2023-08-07T16:01:55","slug":"install-ghost-on-mac","status":"publish","type":"post","link":"https:\/\/www.hongkiat.com\/blog\/install-ghost-on-mac\/","title":{"rendered":"How to Install Ghost Blogging Platform on Your Mac"},"content":{"rendered":"<p><strong>Note:<\/strong> This article was first published on: Oct 24, 2013.<\/p>\n<p><a rel=\"nofollow noopener\" target=\"_blank\" href=\"https:\/\/ghost.org\/\">Ghost.org<\/a> is a  <a href=\"https:\/\/www.hongkiat.com\/blog\/desktop-blogging-clients-the-ultimate-list\/\">blogging platform<\/a> created by <a rel=\"nofollow noopener\" target=\"_blank\" href=\"https:\/\/john.onolan.org\/\">John O\u2019Nolan<\/a> and further developed with the help of <a rel=\"nofollow noopener\" target=\"_blank\" href=\"https:\/\/twitter.com\/erisds\">Hannah Wolfe<\/a>. It began as a Kickstarter project and managed to raise more than $300,000 in funding. Well-known tech and blogging companies like WooThemes and Envato supported the project.<\/p>\n<p>The main goal of Ghost is to simplify the blogging process and make it visually appealing. Unlike WordPress, which has grown to be a tool for building various types of websites, Ghost focuses solely on being a platform for blogging.<\/p>\n<p>In the following article, we\u2019ll guide you step-by-step on how to install Ghost on your personal computer.<\/p>\n<div class=\"ref-block ref-block--post\" id=\"ref-post-1\">\n\t\t\t\t\t<a href=\"https:\/\/www.hongkiat.com\/blog\/anchor-cms\/\" class=\"ref-block__link\" title=\"Read More: Anchor CMS Blogging Platform (Review)\" rel=\"bookmark\"><span class=\"screen-reader-text\">Anchor CMS Blogging Platform (Review)<\/span><\/a>\n<div class=\"ref-block__thumbnail img-thumb img-thumb--jumbo\" data-img='{ \"src\" : \"https:\/\/assets.hongkiat.com\/uploads\/thumbs\/250x160\/anchor-cms.jpg\" }'>\n\t\t\t\t\t\t\t<noscript>\n<style>.no-js #ref-block-post-17787 .ref-block__thumbnail { background-image: url(\"https:\/\/assets.hongkiat.com\/uploads\/thumbs\/250x160\/anchor-cms.jpg\"); }<\/style>\n<\/noscript>\n\t\t\t\t\t\t<\/div>\n<div class=\"ref-block__summary\">\n<h4 class=\"ref-title\">Anchor CMS Blogging Platform (Review)<\/h4>\n<p class=\"ref-description\">\n\t\t\t\t\t\tPublishing online is easy. Almost anyone can do it, even without paying a cent, thanks to numerous CMS...\t\t\t\t\t\t<span>Read more<\/span><\/p>\n<\/div>\n<\/div>\n<h2>Requirement<\/h2>\n<p>We need Node.js version <code>0.10.*<\/code> (the current stable release) to be able to run Ghost. Node.js installation package is available for Windows, Mac, and Linux. <a rel=\"nofollow noopener\" target=\"_blank\" href=\"https:\/\/nodejs.org\/en\/download\/\">Download it here<\/a>, and install it.<\/p>\n<p>If you have installed Node.js before, verify the version with this command in the Terminal: <code>node -v<\/code>. At the time of the writing, my Node.js installation was outdated, so I need to update it first.<\/p>\n<p>Thanks to a tip by <a rel=\"nofollow noopener\" target=\"_blank\" href=\"https:\/\/theholmesoffice.com\/node-js-fundamentals-how-to-upgrade-the-node-js-version\/\">Simon Holmes<\/a>, updating Node.js is so easy. We run the following set of command lines, then wait for a while for the installation process to complete.<\/p>\n<pre>\r\n sudo npm cache clean -f\r\n sudo npm install -g n\r\n sudo n stable\r\n <\/pre>\n<p>Let\u2019s verify the version once again.<\/p>\n<figure><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/assets.hongkiat.com\/uploads\/install-ghost-on-mac\/update-node.jpg\" width=\"500\" height=\"180\"><\/figure>\n<p>As you can see above, <strong>Node.js 0.10.21<\/strong> has been installed, and we are all set to install Ghost.<\/p>\n<div class=\"ref-block ref-block--post\" id=\"ref-post-2\">\n\t\t\t\t\t<a href=\"https:\/\/www.hongkiat.com\/blog\/node-js-server-side-javascript\/\" class=\"ref-block__link\" title=\"Read More: Beginner\u2019s Guide to Node.js (Server-side JavaScript)\" rel=\"bookmark\"><span class=\"screen-reader-text\">Beginner\u2019s Guide to Node.js (Server-side JavaScript)<\/span><\/a>\n<div class=\"ref-block__thumbnail img-thumb img-thumb--jumbo\" data-img='{ \"src\" : \"https:\/\/assets.hongkiat.com\/uploads\/thumbs\/250x160\/node-js-server-side-javascript.jpg\" }'>\n\t\t\t\t\t\t\t<noscript>\n<style>.no-js #ref-block-post-10739 .ref-block__thumbnail { background-image: url(\"https:\/\/assets.hongkiat.com\/uploads\/thumbs\/250x160\/node-js-server-side-javascript.jpg\"); }<\/style>\n<\/noscript>\n\t\t\t\t\t\t<\/div>\n<div class=\"ref-block__summary\">\n<h4 class=\"ref-title\">Beginner\u2019s Guide to Node.js (Server-side JavaScript)<\/h4>\n<p class=\"ref-description\">\n\t\t\t\t\t\tNode.js - in simple words - is server-side JavaScript. It has been getting a lot of buzzes these...\t\t\t\t\t\t<span>Read more<\/span><\/p>\n<\/div>\n<\/div>\n<h2>Installing Ghost<\/h2>\n<p>You can download Ghost from <a rel=\"nofollow noopener\" target=\"_blank\" href=\"https:\/\/ghost.org\/vs\/wordpress\/\">the official website<\/a> or from <a rel=\"nofollow noopener\" target=\"_blank\" href=\"https:\/\/github.com\/TryGhost\/Ghost\">the Github repo<\/a>.<\/p>\n<p>We will be using command line and Terminal to install Ghost. Ghost does not come with a step-by-step installation guide like in WordPress or other blogging platforms\/CMS that you might have come across. So it might not tougher on those who rarely work with Terminal and command line.<\/p>\n<p>Open Terminal and navigate to the Ghost folder that you have just extracted, for example: <code>cd ~\/your\/path\/to\/ghost\/folder<\/code>. And run these two commands:<\/p>\n<pre>\r\n npm install --production\r\n npm start\r\n <\/pre>\n<p>Your Ghost blog should now run.<\/p>\n<figure><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/assets.hongkiat.com\/uploads\/install-ghost-on-mac\/running-ghost.jpg\" width=\"500\" height=\"180\"><\/figure>\n<p>You can access your Ghost blog in <code>127.0.0.1:2368<\/code> URL within the browser.<\/p>\n<figure><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/assets.hongkiat.com\/uploads\/install-ghost-on-mac\/browser-ghost.jpg\" width=\"500\" height=\"320\"><\/figure>\n<h2>Ghost Back-end Admin<\/h2>\n<p>Go to <code>127.0.0.1:2368\/ghost<\/code>. For the initiation, input your name, email, and password. Once that is done, you will be redirected to the back-end administration, where you can write, edit, and publish post. The layout is minimal yet refreshing.<\/p>\n<figure><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/assets.hongkiat.com\/uploads\/install-ghost-on-mac\/create-post.jpg\" width=\"500\" height=\"320\"><\/figure>\n<p>Hit the <span class=\"key\">+ New Post<\/span> button to start creating a new post.<\/p>\n<p>Ghost uses MarkDown. You can head over to our previous post to learn <a rel=\"nofollow noopener\" target=\"_blank\" href=\"https:\/\/www.hongkiat.com\/blog\/web-content-with-markdown\/\">how to write using MarkDown<\/a>.<\/p>\n<h2>Final Thought<\/h2>\n<p>Ghost is a new blogging platform with a very active development, and they plan to add a bunch of new features in the next version. At the time of the writing, Ghost is missing several trivial features for a blog. First, you can only assign Tags for the post; there is still no way to manage post by category. The Tag archive however is not yet accessible \u2013 you cannot sort posts that are saved under Tags on the front-end. Plus, we cannot schedule post, and comment to the post as well.<\/p>\n<p>Despite all that, I\u2019m looking forward to how this new platform will grow, and things that will be built around it in the next couple of years.<\/p>","protected":false},"excerpt":{"rendered":"<p>Note: This article was first published on: Oct 24, 2013. Ghost.org is a blogging platform created by John O\u2019Nolan and further developed with the help of Hannah Wolfe. It began as a Kickstarter project and managed to raise more than $300,000 in funding. Well-known tech and blogging companies like WooThemes and Envato supported the project.&hellip;<\/p>\n","protected":false},"author":113,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[3408],"tags":[2786,3933],"topic":[4523],"class_list":["entry-content","is-maxi"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v22.8 (Yoast SEO v27.4) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>How to Install Ghost Blogging Platform on Your Mac - Hongkiat<\/title>\n<meta name=\"description\" content=\"Note: This article was first published on: Oct 24, 2013. Ghost.org is a blogging platform created by John O&#039;Nolan and further developed with the help of\" \/>\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.hongkiat.com\/blog\/install-ghost-on-mac\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Install Ghost Blogging Platform on Your Mac\" \/>\n<meta property=\"og:description\" content=\"Note: This article was first published on: Oct 24, 2013. Ghost.org is a blogging platform created by John O&#039;Nolan and further developed with the help of\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.hongkiat.com\/blog\/install-ghost-on-mac\/\" \/>\n<meta property=\"og:site_name\" content=\"Hongkiat\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/hongkiatcom\" \/>\n<meta property=\"article:published_time\" content=\"2013-10-24T07:01:58+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-08-07T16:01:55+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/assets.hongkiat.com\/uploads\/install-ghost-on-mac\/update-node.jpg\" \/>\n<meta name=\"author\" content=\"Thoriq Firdaus\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@tfirdaus\" \/>\n<meta name=\"twitter:site\" content=\"@hongkiat\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Thoriq Firdaus\" \/>\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:\\\/\\\/www.hongkiat.com\\\/blog\\\/install-ghost-on-mac\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/install-ghost-on-mac\\\/\"},\"author\":{\"name\":\"Thoriq Firdaus\",\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/#\\\/schema\\\/person\\\/e7948c7a175d211496331e4b6ce55807\"},\"headline\":\"How to Install Ghost Blogging Platform on Your Mac\",\"datePublished\":\"2013-10-24T07:01:58+00:00\",\"dateModified\":\"2023-08-07T16:01:55+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/install-ghost-on-mac\\\/\"},\"wordCount\":544,\"commentCount\":19,\"publisher\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/install-ghost-on-mac\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/assets.hongkiat.com\\\/uploads\\\/install-ghost-on-mac\\\/update-node.jpg\",\"keywords\":[\"Blogging Tools\",\"macOS\"],\"articleSection\":[\"Blogging\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/install-ghost-on-mac\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/install-ghost-on-mac\\\/\",\"url\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/install-ghost-on-mac\\\/\",\"name\":\"How to Install Ghost Blogging Platform on Your Mac - Hongkiat\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/install-ghost-on-mac\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/install-ghost-on-mac\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/assets.hongkiat.com\\\/uploads\\\/install-ghost-on-mac\\\/update-node.jpg\",\"datePublished\":\"2013-10-24T07:01:58+00:00\",\"dateModified\":\"2023-08-07T16:01:55+00:00\",\"description\":\"Note: This article was first published on: Oct 24, 2013. Ghost.org is a blogging platform created by John O'Nolan and further developed with the help of\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/install-ghost-on-mac\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/install-ghost-on-mac\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/install-ghost-on-mac\\\/#primaryimage\",\"url\":\"https:\\\/\\\/assets.hongkiat.com\\\/uploads\\\/install-ghost-on-mac\\\/update-node.jpg\",\"contentUrl\":\"https:\\\/\\\/assets.hongkiat.com\\\/uploads\\\/install-ghost-on-mac\\\/update-node.jpg\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/install-ghost-on-mac\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Install Ghost Blogging Platform on Your Mac\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/\",\"name\":\"Hongkiat\",\"description\":\"Tech and Design Tips\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/#organization\",\"name\":\"Hongkiat.com\",\"url\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/wp-content\\\/uploads\\\/hkdc-logo-rect-yoast.jpg\",\"contentUrl\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/wp-content\\\/uploads\\\/hkdc-logo-rect-yoast.jpg\",\"width\":1200,\"height\":799,\"caption\":\"Hongkiat.com\"},\"image\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/hongkiatcom\",\"https:\\\/\\\/x.com\\\/hongkiat\",\"https:\\\/\\\/www.pinterest.com\\\/hongkiat\\\/\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/#\\\/schema\\\/person\\\/e7948c7a175d211496331e4b6ce55807\",\"name\":\"Thoriq Firdaus\",\"description\":\"Thoriq is a writer for Hongkiat.com with a passion for web design and development. He is the author of Responsive Web Design by Examples, where he covered his best approaches in developing responsive websites quickly with a framework.\",\"sameAs\":[\"https:\\\/\\\/thoriq.com\",\"https:\\\/\\\/x.com\\\/tfirdaus\"],\"jobTitle\":\"Web Developer\",\"url\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/author\\\/thoriq\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"How to Install Ghost Blogging Platform on Your Mac - Hongkiat","description":"Note: This article was first published on: Oct 24, 2013. Ghost.org is a blogging platform created by John O'Nolan and further developed with the help of","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.hongkiat.com\/blog\/install-ghost-on-mac\/","og_locale":"en_US","og_type":"article","og_title":"How to Install Ghost Blogging Platform on Your Mac","og_description":"Note: This article was first published on: Oct 24, 2013. Ghost.org is a blogging platform created by John O'Nolan and further developed with the help of","og_url":"https:\/\/www.hongkiat.com\/blog\/install-ghost-on-mac\/","og_site_name":"Hongkiat","article_publisher":"https:\/\/www.facebook.com\/hongkiatcom","article_published_time":"2013-10-24T07:01:58+00:00","article_modified_time":"2023-08-07T16:01:55+00:00","og_image":[{"url":"https:\/\/assets.hongkiat.com\/uploads\/install-ghost-on-mac\/update-node.jpg","type":"","width":"","height":""}],"author":"Thoriq Firdaus","twitter_card":"summary_large_image","twitter_creator":"@tfirdaus","twitter_site":"@hongkiat","twitter_misc":{"Written by":"Thoriq Firdaus","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.hongkiat.com\/blog\/install-ghost-on-mac\/#article","isPartOf":{"@id":"https:\/\/www.hongkiat.com\/blog\/install-ghost-on-mac\/"},"author":{"name":"Thoriq Firdaus","@id":"https:\/\/www.hongkiat.com\/blog\/#\/schema\/person\/e7948c7a175d211496331e4b6ce55807"},"headline":"How to Install Ghost Blogging Platform on Your Mac","datePublished":"2013-10-24T07:01:58+00:00","dateModified":"2023-08-07T16:01:55+00:00","mainEntityOfPage":{"@id":"https:\/\/www.hongkiat.com\/blog\/install-ghost-on-mac\/"},"wordCount":544,"commentCount":19,"publisher":{"@id":"https:\/\/www.hongkiat.com\/blog\/#organization"},"image":{"@id":"https:\/\/www.hongkiat.com\/blog\/install-ghost-on-mac\/#primaryimage"},"thumbnailUrl":"https:\/\/assets.hongkiat.com\/uploads\/install-ghost-on-mac\/update-node.jpg","keywords":["Blogging Tools","macOS"],"articleSection":["Blogging"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.hongkiat.com\/blog\/install-ghost-on-mac\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.hongkiat.com\/blog\/install-ghost-on-mac\/","url":"https:\/\/www.hongkiat.com\/blog\/install-ghost-on-mac\/","name":"How to Install Ghost Blogging Platform on Your Mac - Hongkiat","isPartOf":{"@id":"https:\/\/www.hongkiat.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.hongkiat.com\/blog\/install-ghost-on-mac\/#primaryimage"},"image":{"@id":"https:\/\/www.hongkiat.com\/blog\/install-ghost-on-mac\/#primaryimage"},"thumbnailUrl":"https:\/\/assets.hongkiat.com\/uploads\/install-ghost-on-mac\/update-node.jpg","datePublished":"2013-10-24T07:01:58+00:00","dateModified":"2023-08-07T16:01:55+00:00","description":"Note: This article was first published on: Oct 24, 2013. Ghost.org is a blogging platform created by John O'Nolan and further developed with the help of","breadcrumb":{"@id":"https:\/\/www.hongkiat.com\/blog\/install-ghost-on-mac\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.hongkiat.com\/blog\/install-ghost-on-mac\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.hongkiat.com\/blog\/install-ghost-on-mac\/#primaryimage","url":"https:\/\/assets.hongkiat.com\/uploads\/install-ghost-on-mac\/update-node.jpg","contentUrl":"https:\/\/assets.hongkiat.com\/uploads\/install-ghost-on-mac\/update-node.jpg"},{"@type":"BreadcrumbList","@id":"https:\/\/www.hongkiat.com\/blog\/install-ghost-on-mac\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.hongkiat.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to Install Ghost Blogging Platform on Your Mac"}]},{"@type":"WebSite","@id":"https:\/\/www.hongkiat.com\/blog\/#website","url":"https:\/\/www.hongkiat.com\/blog\/","name":"Hongkiat","description":"Tech and Design Tips","publisher":{"@id":"https:\/\/www.hongkiat.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.hongkiat.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.hongkiat.com\/blog\/#organization","name":"Hongkiat.com","url":"https:\/\/www.hongkiat.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.hongkiat.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/www.hongkiat.com\/blog\/wp-content\/uploads\/hkdc-logo-rect-yoast.jpg","contentUrl":"https:\/\/www.hongkiat.com\/blog\/wp-content\/uploads\/hkdc-logo-rect-yoast.jpg","width":1200,"height":799,"caption":"Hongkiat.com"},"image":{"@id":"https:\/\/www.hongkiat.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/hongkiatcom","https:\/\/x.com\/hongkiat","https:\/\/www.pinterest.com\/hongkiat\/"]},{"@type":"Person","@id":"https:\/\/www.hongkiat.com\/blog\/#\/schema\/person\/e7948c7a175d211496331e4b6ce55807","name":"Thoriq Firdaus","description":"Thoriq is a writer for Hongkiat.com with a passion for web design and development. He is the author of Responsive Web Design by Examples, where he covered his best approaches in developing responsive websites quickly with a framework.","sameAs":["https:\/\/thoriq.com","https:\/\/x.com\/tfirdaus"],"jobTitle":"Web Developer","url":"https:\/\/www.hongkiat.com\/blog\/author\/thoriq\/"}]}},"jetpack_featured_media_url":"https:\/\/","jetpack_shortlink":"https:\/\/wp.me\/p4uxU-4Nm","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/posts\/18436","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/users\/113"}],"replies":[{"embeddable":true,"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/comments?post=18436"}],"version-history":[{"count":3,"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/posts\/18436\/revisions"}],"predecessor-version":[{"id":68599,"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/posts\/18436\/revisions\/68599"}],"wp:attachment":[{"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/media?parent=18436"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/categories?post=18436"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/tags?post=18436"},{"taxonomy":"topic","embeddable":true,"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/topic?post=18436"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}