{"id":1819,"date":"2017-05-09T15:37:23","date_gmt":"2017-05-09T15:37:23","guid":{"rendered":"https:\/\/ionic.io\/blog\/?p=1819"},"modified":"2017-05-16T19:03:09","modified_gmt":"2017-05-16T19:03:09","slug":"announcing-ionic-cli-v3","status":"publish","type":"post","link":"https:\/\/ionic.io\/blog\/announcing-ionic-cli-v3","title":{"rendered":"Announcing Ionic CLI v3"},"content":{"rendered":"<p>Greetings everyone! I&#8217;m happy to announce that version 3 of the Ionic CLI is now available!<\/p>\n<p>Since we <a href=\"https:\/\/ionic.io\/blog\/ionic-cli-v3-beta\/\">announced the CLI v3 Beta<\/a> and our Easter Egg hunt, we\u2019ve seen a large amount early beta testers using the CLI successfully in their Ionic projects. These testers were able to provide some great feedback, as well as get a chance to win a prize! In fact, many of them found our Easter Egg in just a few short hours. More recently, we were able to get even more feedback while devs became true Ionic Jedi Hacksters in our hackathon last week (Stay tuned for results on our <a href=\"https:\/\/ionic.io\/blog\/become-an-ionic-jedi-hackster\/\">Ionic Jedi Hackathon<\/a>!!!)<\/p>\n<p>Other than the version change, what makes this CLI release special? Let&#8217;s take a look at some of the key improvements to the CLI.<\/p>\n<p><!--more--><\/p>\n<h3>Speed + Guidance<\/h3>\n<p>The first thing you may notice is how quickly the new CLI installs. This is partly due to eliminating over 90MB of dependencies and thousands of lines of legacy code! Now when you install the CLI, you get a much smaller footprint as well as a faster install time. Going forward, CLI speed and performance will be one of the primary considerations we have.<\/p>\n<p>Another consideration we had was providing more help, guidance, and feedback. A large number of commands now provide interactive prompts when information is needed. The CLI tries to be informative and helpful when problems arise. Command help has also been improved. Just append <code>--help<\/code> to any command for a detailed overview of inputs and options. We also provide examples of common use cases. For example, check out the details of <code>ionic start --help<\/code>:<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" width=\"1400\" height=\"775\" data-src=\"https:\/\/ionic.io\/blog\/wp-content\/uploads\/2017\/05\/cli-help.jpg\" alt=\"\" class=\"aligncenter size-full wp-image-1823 lazyload\" data-srcset=\"https:\/\/ionic.io\/blog\/wp-content\/uploads\/2017\/05\/cli-help.jpg 1400w, https:\/\/ionic.io\/blog\/wp-content\/uploads\/2017\/05\/cli-help-300x166.jpg 300w, https:\/\/ionic.io\/blog\/wp-content\/uploads\/2017\/05\/cli-help-768x425.jpg 768w, https:\/\/ionic.io\/blog\/wp-content\/uploads\/2017\/05\/cli-help-1024x567.jpg 1024w\" data-sizes=\"auto, (max-width: 1400px) 100vw, 1400px\" src=\"data:image\/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==\" style=\"--smush-placeholder-width: 1400px; --smush-placeholder-aspect-ratio: 1400\/775;\" \/><noscript><img loading=\"lazy\" decoding=\"async\" width=\"1400\" height=\"775\" src=\"https:\/\/ionic.io\/blog\/wp-content\/uploads\/2017\/05\/cli-help.jpg\" alt=\"\" class=\"aligncenter size-full wp-image-1823\" srcset=\"https:\/\/ionic.io\/blog\/wp-content\/uploads\/2017\/05\/cli-help.jpg 1400w, https:\/\/ionic.io\/blog\/wp-content\/uploads\/2017\/05\/cli-help-300x166.jpg 300w, https:\/\/ionic.io\/blog\/wp-content\/uploads\/2017\/05\/cli-help-768x425.jpg 768w, https:\/\/ionic.io\/blog\/wp-content\/uploads\/2017\/05\/cli-help-1024x567.jpg 1024w\" sizes=\"auto, (max-width: 1400px) 100vw, 1400px\" \/><\/noscript><\/p>\n<h3>Plugins!<\/h3>\n<p>We took a different approach to the architecture of the CLI. Instead of providing everything in one global install, we split out non-essential commands and functionality into CLI plugins. This keeps the core small, while still offering valuable, project-specific functionality in plugins.<\/p>\n<p>For the first release of CLI v3, there are four official CLI plugins:<\/p>\n<ul>\n<li><code>@ionic\/cli-plugin-ionic-angular<\/code> &#8211; Ionic Angular project plugin that provides useful build tools and generators.<\/li>\n<li><code>@ionic\/cli-plugin-ionic1<\/code> &#8211; Ionic 1 project plugin that has functionality ported from the old CLI.<\/li>\n<li><code>@ionic\/cli-plugin-cordova<\/code> &#8211; Essential for an Ionic\/Cordova app.<\/li>\n<li><code>@ionic\/cli-plugin-proxy<\/code> &#8211; For proxying CLI requests through a firewall. <\/li>\n<\/ul>\n<p>A common question that came up during the beta test was &#8220;Why are the commands different?&#8221; With the new CLI, we decided to namespace the Cordova commands (e.g. <code>ionic build<\/code> is now <code>ionic cordova build<\/code>). We felt this was a necessary change as Ionic developers are beginning to create Ionic apps for desktop, PWAs, and other platforms. To help with the differences, we made you <a href=\"https:\/\/docs.google.com\/document\/d\/1r8nTAaJ5hLIJ1DCwBozU-JGV480Du0xCMIg2dj3JRQo\/edit#heading=h.kk1966kbedef\">a lovely Cheat Sheet<\/a>.<\/p>\n<h3>Getting Started<\/h3>\n<p><strong>Make sure you have Node 6+ and npm 3+.<\/strong><\/p>\n<p>Install the new CLI globally (after uninstalling the old one):<\/p>\n<pre><code>npm uninstall -g ionic\nnpm install -g ionic@latest\n<\/code><\/pre>\n<p>In your Ionic project directory (and assuming you have a standard Ionic project structure), try running a command, such as <code>ionic info<\/code>. The CLI attempts to identify your project type and will prompt you to install the respective plugin. If you run <code>ionic cordova<\/code>, it will prompt you to install the Cordova plugin. If you run <code>ionic --help<\/code>, you&#8217;ll see a list of all commands.<\/p>\n<p>You\u2019ll need both the Cordova plugin (<code>@ionic\/cli-plugin-cordova<\/code>) and the project plugin (<code>@ionic\/cli-plugin-ionic-angular<\/code> or <code>@ionic\/cli-plugin-ionic1<\/code>) to continue developing an existing Ionic\/Cordova app:<\/p>\n<p>For Ionic Angular:<\/p>\n<pre><code>npm install --save-dev --save-exact @ionic\/cli-plugin-ionic-angular@latest\nnpm install --save-dev --save-exact @ionic\/cli-plugin-cordova@latest\n<\/code><\/pre>\n<p>For Ionic 1:<\/p>\n<pre><code>npm install --save-dev --save-exact @ionic\/cli-plugin-ionic1@latest\nnpm install --save-dev --save-exact @ionic\/cli-plugin-cordova@latest\n<\/code><\/pre>\n<p>The CLI will also occasionally check for updates and prompt you when there\u2019s updates available.<\/p>\n<h3>Known Issues<\/h3>\n<p>We have a few minor things to improve now that CLI v3 is out.<\/p>\n<ul>\n<li><code>ionic start<\/code> still takes a long time to download dependencies. (<a href=\"https:\/\/github.com\/driftyco\/ionic-cli\/issues\/2231\">#2231<\/a>) <\/li>\n<li><code>ionic start<\/code> does not yet support alternatives such as downloading from a Github repo, a zip URL, or an Ionic Creator project. (<a href=\"https:\/\/github.com\/driftyco\/ionic-cli\/issues\/2156\">#2156<\/a>) <\/li>\n<li>Using <code>ionic cordova<\/code> commands indent <code>config.xml<\/code> to 4 spaces, which may be alarming for existing apps. We write to <code>config.xml<\/code> for resource generation and livereload. (<a href=\"https:\/\/github.com\/driftyco\/ionic-cli\/issues\/2230\">#2230<\/a>) <\/li>\n<li>For Ionic 1, some gulp hooks are not called. (<a href=\"https:\/\/github.com\/driftyco\/ionic-cli\/issues\/1989\">#1989<\/a>) <\/li>\n<li>Uploads from CLI v3 don&#8217;t extract properly in Ionic Deploy on Android devices. (<a href=\"https:\/\/github.com\/driftyco\/ionic-cli\/issues\/2237\">#2237<\/a>) <\/li>\n<\/ul>\n<p>For a full list of CLI changes, please see <a href=\"https:\/\/github.com\/driftyco\/ionic-cli\/blob\/master\/CHANGELOG.md#upgrading-from-cli-2\">CHANGELOG.md<\/a>. For more documentation, please see <a href=\"https:\/\/github.com\/driftyco\/ionic-cli\/blob\/master\/README.md\">README.md<\/a>.<\/p>\n<p>Questions? Ideas? Feedback? Issues? Please let us know by filing an issue on <a href=\"https:\/\/github.com\/driftyco\/ionic-cli\">the Ionic CLI repo<\/a>.<\/p>\n<p>THANK YOU to all our wonderful Beta testers! Special thanks to those who went the extra mile and contributed issues, comments, and pull requests on Github. \u2764\ufe0f<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Greetings everyone! I&#8217;m happy to announce that version 3 of the Ionic CLI is now available! Since we announced the CLI v3 Beta and our Easter Egg hunt, we\u2019ve seen a large amount early beta testers using the CLI successfully in their Ionic projects. These testers were able to provide some great feedback, as well [&hellip;]<\/p>\n","protected":false},"author":22,"featured_media":1820,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"publish_to_discourse":"","publish_post_category":"","wpdc_auto_publish_overridden":"","wpdc_topic_tags":"","wpdc_pin_topic":"","wpdc_pin_until":"","discourse_post_id":"","discourse_permalink":"","wpdc_publishing_response":"","wpdc_publishing_error":"","_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[1],"tags":[29],"class_list":["post-1819","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-all","tag-cli"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v23.0 (Yoast SEO v23.0) - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Announcing Ionic CLI v3 - Ionic Blog<\/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:\/\/ionic.io\/blog\/announcing-ionic-cli-v3\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Announcing Ionic CLI v3\" \/>\n<meta property=\"og:description\" content=\"Greetings everyone! I&#8217;m happy to announce that version 3 of the Ionic CLI is now available! Since we announced the CLI v3 Beta and our Easter Egg hunt, we\u2019ve seen a large amount early beta testers using the CLI successfully in their Ionic projects. These testers were able to provide some great feedback, as well [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/ionic.io\/blog\/announcing-ionic-cli-v3\" \/>\n<meta property=\"og:site_name\" content=\"Ionic Blog\" \/>\n<meta property=\"article:published_time\" content=\"2017-05-09T15:37:23+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2017-05-16T19:03:09+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/ionic.io\/blog\/wp-content\/uploads\/2017\/05\/new-cli.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1400\" \/>\n\t<meta property=\"og:image:height\" content=\"900\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Dan Imhoff\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@dwieeb\" \/>\n<meta name=\"twitter:site\" content=\"@ionicframework\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Dan Imhoff\" \/>\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:\/\/ionic.io\/blog\/announcing-ionic-cli-v3#article\",\"isPartOf\":{\"@id\":\"https:\/\/ionic.io\/blog\/announcing-ionic-cli-v3\"},\"author\":{\"name\":\"Dan Imhoff\",\"@id\":\"https:\/\/ionic.io\/blog\/#\/schema\/person\/de5619c7bfa6f43f0ccd6c3adb857d7a\"},\"headline\":\"Announcing Ionic CLI v3\",\"datePublished\":\"2017-05-09T15:37:23+00:00\",\"dateModified\":\"2017-05-16T19:03:09+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/ionic.io\/blog\/announcing-ionic-cli-v3\"},\"wordCount\":701,\"commentCount\":34,\"publisher\":{\"@id\":\"https:\/\/ionic.io\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/ionic.io\/blog\/announcing-ionic-cli-v3#primaryimage\"},\"thumbnailUrl\":\"https:\/\/ionic.io\/blog\/wp-content\/uploads\/2017\/05\/new-cli.jpg\",\"keywords\":[\"CLI\"],\"articleSection\":[\"All\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/ionic.io\/blog\/announcing-ionic-cli-v3#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/ionic.io\/blog\/announcing-ionic-cli-v3\",\"url\":\"https:\/\/ionic.io\/blog\/announcing-ionic-cli-v3\",\"name\":\"Announcing Ionic CLI v3 - Ionic Blog\",\"isPartOf\":{\"@id\":\"https:\/\/ionic.io\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/ionic.io\/blog\/announcing-ionic-cli-v3#primaryimage\"},\"image\":{\"@id\":\"https:\/\/ionic.io\/blog\/announcing-ionic-cli-v3#primaryimage\"},\"thumbnailUrl\":\"https:\/\/ionic.io\/blog\/wp-content\/uploads\/2017\/05\/new-cli.jpg\",\"datePublished\":\"2017-05-09T15:37:23+00:00\",\"dateModified\":\"2017-05-16T19:03:09+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/ionic.io\/blog\/announcing-ionic-cli-v3#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/ionic.io\/blog\/announcing-ionic-cli-v3\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/ionic.io\/blog\/announcing-ionic-cli-v3#primaryimage\",\"url\":\"https:\/\/ionic.io\/blog\/wp-content\/uploads\/2017\/05\/new-cli.jpg\",\"contentUrl\":\"https:\/\/ionic.io\/blog\/wp-content\/uploads\/2017\/05\/new-cli.jpg\",\"width\":1400,\"height\":900},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/ionic.io\/blog\/announcing-ionic-cli-v3#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/ionic.io\/blog\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Announcing Ionic CLI v3\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/ionic.io\/blog\/#website\",\"url\":\"https:\/\/ionic.io\/blog\/\",\"name\":\"ionic.io\/blog\",\"description\":\"Build amazing native and progressive web apps with the web\",\"publisher\":{\"@id\":\"https:\/\/ionic.io\/blog\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/ionic.io\/blog\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/ionic.io\/blog\/#organization\",\"name\":\"Ionic\",\"url\":\"https:\/\/ionic.io\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/ionic.io\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/ionic.io\/blog\/wp-content\/uploads\/2020\/10\/white-on-color.png\",\"contentUrl\":\"https:\/\/ionic.io\/blog\/wp-content\/uploads\/2020\/10\/white-on-color.png\",\"width\":1920,\"height\":854,\"caption\":\"Ionic\"},\"image\":{\"@id\":\"https:\/\/ionic.io\/blog\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/x.com\/ionicframework\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/ionic.io\/blog\/#\/schema\/person\/de5619c7bfa6f43f0ccd6c3adb857d7a\",\"name\":\"Dan Imhoff\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/ionic.io\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/8d1771da4de9f0a11fdbaa84292bed22ca272f9bd17438148a5b13554d09c8e2?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/8d1771da4de9f0a11fdbaa84292bed22ca272f9bd17438148a5b13554d09c8e2?s=96&d=mm&r=g\",\"caption\":\"Dan Imhoff\"},\"sameAs\":[\"https:\/\/x.com\/dwieeb\"],\"url\":\"https:\/\/ionic.io\/blog\/author\/dan\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Announcing Ionic CLI v3 - Ionic Blog","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:\/\/ionic.io\/blog\/announcing-ionic-cli-v3","og_locale":"en_US","og_type":"article","og_title":"Announcing Ionic CLI v3","og_description":"Greetings everyone! I&#8217;m happy to announce that version 3 of the Ionic CLI is now available! Since we announced the CLI v3 Beta and our Easter Egg hunt, we\u2019ve seen a large amount early beta testers using the CLI successfully in their Ionic projects. These testers were able to provide some great feedback, as well [&hellip;]","og_url":"https:\/\/ionic.io\/blog\/announcing-ionic-cli-v3","og_site_name":"Ionic Blog","article_published_time":"2017-05-09T15:37:23+00:00","article_modified_time":"2017-05-16T19:03:09+00:00","og_image":[{"width":1400,"height":900,"url":"https:\/\/ionic.io\/blog\/wp-content\/uploads\/2017\/05\/new-cli.jpg","type":"image\/jpeg"}],"author":"Dan Imhoff","twitter_card":"summary_large_image","twitter_creator":"@dwieeb","twitter_site":"@ionicframework","twitter_misc":{"Written by":"Dan Imhoff","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/ionic.io\/blog\/announcing-ionic-cli-v3#article","isPartOf":{"@id":"https:\/\/ionic.io\/blog\/announcing-ionic-cli-v3"},"author":{"name":"Dan Imhoff","@id":"https:\/\/ionic.io\/blog\/#\/schema\/person\/de5619c7bfa6f43f0ccd6c3adb857d7a"},"headline":"Announcing Ionic CLI v3","datePublished":"2017-05-09T15:37:23+00:00","dateModified":"2017-05-16T19:03:09+00:00","mainEntityOfPage":{"@id":"https:\/\/ionic.io\/blog\/announcing-ionic-cli-v3"},"wordCount":701,"commentCount":34,"publisher":{"@id":"https:\/\/ionic.io\/blog\/#organization"},"image":{"@id":"https:\/\/ionic.io\/blog\/announcing-ionic-cli-v3#primaryimage"},"thumbnailUrl":"https:\/\/ionic.io\/blog\/wp-content\/uploads\/2017\/05\/new-cli.jpg","keywords":["CLI"],"articleSection":["All"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/ionic.io\/blog\/announcing-ionic-cli-v3#respond"]}]},{"@type":"WebPage","@id":"https:\/\/ionic.io\/blog\/announcing-ionic-cli-v3","url":"https:\/\/ionic.io\/blog\/announcing-ionic-cli-v3","name":"Announcing Ionic CLI v3 - Ionic Blog","isPartOf":{"@id":"https:\/\/ionic.io\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/ionic.io\/blog\/announcing-ionic-cli-v3#primaryimage"},"image":{"@id":"https:\/\/ionic.io\/blog\/announcing-ionic-cli-v3#primaryimage"},"thumbnailUrl":"https:\/\/ionic.io\/blog\/wp-content\/uploads\/2017\/05\/new-cli.jpg","datePublished":"2017-05-09T15:37:23+00:00","dateModified":"2017-05-16T19:03:09+00:00","breadcrumb":{"@id":"https:\/\/ionic.io\/blog\/announcing-ionic-cli-v3#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/ionic.io\/blog\/announcing-ionic-cli-v3"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/ionic.io\/blog\/announcing-ionic-cli-v3#primaryimage","url":"https:\/\/ionic.io\/blog\/wp-content\/uploads\/2017\/05\/new-cli.jpg","contentUrl":"https:\/\/ionic.io\/blog\/wp-content\/uploads\/2017\/05\/new-cli.jpg","width":1400,"height":900},{"@type":"BreadcrumbList","@id":"https:\/\/ionic.io\/blog\/announcing-ionic-cli-v3#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/ionic.io\/blog"},{"@type":"ListItem","position":2,"name":"Announcing Ionic CLI v3"}]},{"@type":"WebSite","@id":"https:\/\/ionic.io\/blog\/#website","url":"https:\/\/ionic.io\/blog\/","name":"ionic.io\/blog","description":"Build amazing native and progressive web apps with the web","publisher":{"@id":"https:\/\/ionic.io\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/ionic.io\/blog\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/ionic.io\/blog\/#organization","name":"Ionic","url":"https:\/\/ionic.io\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/ionic.io\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/ionic.io\/blog\/wp-content\/uploads\/2020\/10\/white-on-color.png","contentUrl":"https:\/\/ionic.io\/blog\/wp-content\/uploads\/2020\/10\/white-on-color.png","width":1920,"height":854,"caption":"Ionic"},"image":{"@id":"https:\/\/ionic.io\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/x.com\/ionicframework"]},{"@type":"Person","@id":"https:\/\/ionic.io\/blog\/#\/schema\/person\/de5619c7bfa6f43f0ccd6c3adb857d7a","name":"Dan Imhoff","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/ionic.io\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/8d1771da4de9f0a11fdbaa84292bed22ca272f9bd17438148a5b13554d09c8e2?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/8d1771da4de9f0a11fdbaa84292bed22ca272f9bd17438148a5b13554d09c8e2?s=96&d=mm&r=g","caption":"Dan Imhoff"},"sameAs":["https:\/\/x.com\/dwieeb"],"url":"https:\/\/ionic.io\/blog\/author\/dan"}]}},"jetpack_sharing_enabled":true,"jetpack_featured_media_url":"https:\/\/ionic.io\/blog\/wp-content\/uploads\/2017\/05\/new-cli.jpg","_links":{"self":[{"href":"https:\/\/ionic.io\/blog\/wp-json\/wp\/v2\/posts\/1819","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/ionic.io\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/ionic.io\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/ionic.io\/blog\/wp-json\/wp\/v2\/users\/22"}],"replies":[{"embeddable":true,"href":"https:\/\/ionic.io\/blog\/wp-json\/wp\/v2\/comments?post=1819"}],"version-history":[{"count":0,"href":"https:\/\/ionic.io\/blog\/wp-json\/wp\/v2\/posts\/1819\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/ionic.io\/blog\/wp-json\/wp\/v2\/media\/1820"}],"wp:attachment":[{"href":"https:\/\/ionic.io\/blog\/wp-json\/wp\/v2\/media?parent=1819"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/ionic.io\/blog\/wp-json\/wp\/v2\/categories?post=1819"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/ionic.io\/blog\/wp-json\/wp\/v2\/tags?post=1819"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}