{"id":1285,"date":"2017-12-27T13:37:45","date_gmt":"2017-12-27T13:37:45","guid":{"rendered":"https:\/\/www.moveoapps.com\/blog\/?p=1285"},"modified":"2021-10-13T11:09:14","modified_gmt":"2021-10-13T11:09:14","slug":"how-to-install-react-native-on-ubuntu-17-10","status":"publish","type":"post","link":"https:\/\/www.moveoapps.com\/blog\/how-to-install-react-native-on-ubuntu-17-10\/","title":{"rendered":"How to install React Native on Ubuntu 17.10"},"content":{"rendered":"<p>React Native is the hot favorite of developers who want to build a cross-platform mobile app.<\/p>\n<p>The technology lets them use JavaScript along with Facebook\u2019s React Library for robust integration with the native platforms and enhance performance.<\/p>\n<p>Based on the \u201clearn once, write anywhere\u201d philosophy, <a href=\"https:\/\/www.moveoapps.com\/react-native-development\">React Native<\/a> has no single way of developing applications. You can install it on different operating systems to know it better.<\/p>\n<p>In this post, we\u2019ll focus on installing React Native on Ubuntu 17.10.<\/p>\n<h2>Walkthrough<\/h2>\n<h2><b>1.\u00a0<\/b><strong><b>Prerequisites<\/b><\/strong><\/h2>\n<p>Install Android Studio and run Java-based \u201cHello world\u201d app for Android. Proceed only when you are done with these steps.<\/p>\n<h2><b>2.\u00a0<\/b><strong><b>Installation Packages<\/b><\/strong><\/h2>\n<p>You need to have the following installation packages:<br \/>\n&#8211; NodeJS<br \/>\n&#8211; NPM<br \/>\n&#8211; Autotools-dev<br \/>\n&#8211; Watchman<br \/>\n&#8211; Flow<br \/>\n&#8211; React Native<\/p>\n<h2>3.\u00a0<strong><b>Start Installing Everything One by One<\/b><\/strong><\/h2>\n<p><b><\/b><strong><strong><b>1. Install NodeJS\u00a0\u00a0<\/b><\/strong><\/strong><\/p>\n<p>To install NodeJS, which is a popular javascript implementation, you\u2019ll need to take the following steps:-Open a terminal (<strong><b>Ctrl+Alt+ t<\/b><\/strong>)-Enter the following commands:<\/p>\n<pre># sudo apt-get install -y build-essential\r\n# curl -sL https:\/\/deb.nodesource.com\/setup_4.x | sudo -E bash \r\n# sudo apt-get install -y nodejs<\/pre>\n<p><b><\/b><strong><b>2. Install NPM\u00a0<\/b><\/strong><\/p>\n<p>After installing NodeJS, proceed to install NPM or the Node Package Manager. You can check if it has already been installed or not using these commands:<\/p>\n<pre># which npm<\/pre>\n<p>When NPM is already installed, this will return &#8211;<\/p>\n<pre># \/usr\/local\/bin\/npm<\/pre>\n<p>If not, it will return &#8211;<\/p>\n<pre>#npm not found.<\/pre>\n<p>To NPM, run the following command in terminal:<\/p>\n<pre># curl http:\/\/npmjs.org\/install.sh | sh<\/pre>\n<p><b><\/b><strong><b>3. Install Autotools-dev\u00a0<\/b><\/strong><\/p>\n<p>Before you go ahead and install Watchman, you need to first install Autotools-dev, which is a package that accompanies several other tools i.e aclocal automake. To install it, copy and paste the following commands in the terminal:<\/p>\n<pre># sudo apt-get install autotools-dev\r\n\r\n# sudo apt-get install aclocal\r\n\r\n# sudo apt-get install automake<\/pre>\n<p><b><\/b><strong><b>4. Install Watchman<\/b><\/strong><\/p>\n<p>Once you\u2019re done installing Autotools-dev, go ahead and install <a href=\"https:\/\/facebook.github.io\/watchman\/docs\/install.html\" target=\"_blank\" rel=\"noopener\">Watchman<\/a>, which is a tool developed by Facebook for watching the file system. It is necessary to install the tool if you are aiming for best results.<\/p>\n<p>Here are the commands you need to copy and paste in the terminal to install Watchman:<\/p>\n<pre># git clone <a href=\"https:\/\/github.com\/facebook\/watchman.git\" target=\"_blank\" rel=\"noopener\">https:\/\/github.com\/facebook\/watchman.git<\/a>\r\n\r\n# cd watchman\r\n\r\n# git checkout v4.9.0 \u00a0\u00a0\u00a0\u00a0# the latest stable release\r\n\r\n# .\/autogen.sh\r\n\r\n# .\/configure\r\n\r\n# make\r\n\r\n# sudo make install<\/pre>\n<p><b><\/b><strong><b>5. Install Flow\u00a0<\/b><\/strong><\/p>\n<p>Flow will let you easily add the static type checking to JavaScript. Additionally, it helps prevent bugs and also, facilitates better code documentation. In fact, many React Native documentation and source code already use it and therefore, you need to install it right away.<\/p>\n<p>The command to install Flow are:<\/p>\n<pre># wget https:\/\/github.com\/facebook\/flow\/releases\/download\/v0.62.0\/flow-linux64-v0.62.0.zip\r\n\r\n# unzip flow-linux64-v0.62.0.zip\r\n\r\n# cd flow\r\n\r\n# sudo mv flow \/usr\/local\/bin\/flow<\/pre>\n<p><strong><b>Note: <\/b><\/strong>You can put the flow executable anywhere on your PATH. It does not have to be in \/use\/local\/bin<\/p>\n<p><strong><b>6. Install React Native<\/b><\/strong><\/p>\n<p>When you\u2019re done with steps 1 through 5, the next step is to install React Native. It\u2019s important to note that you will need to make use of sudo\u00a0to install React Native as a root. The reason behind this is that we\u2019re going to install it globally. Here\u2019s the code, which you need to use:<\/p>\n<pre># sudo npm install -g react-native-cli<\/pre>\n<p>Users who\u2019ve installed NPM using a different method can proceed to install React Native as a normal user with this code:<\/p>\n<pre># npm install -g react-native-cli<\/pre>\n<p>When you\u2019re done with installing all the prerequisite packages, you can go ahead and start creating your own app(s)!<\/p>\n<p><strong><b>Let\u2019s create demo project in React Native for test all of the above installations.<\/b><\/strong><\/p>\n<h2><strong><b>4. Create Project\u00a0<\/b><\/strong><\/h2>\n<p>Start by creating an app project with the following command:<\/p>\n<pre># react-native init MyFirstDemoApp<\/pre>\n<p>However, you need to remember that it may take several minutes to create a project initially.<\/p>\n<h2>5.\u00a0<strong><b>Setting Up an Android Device<\/b><\/strong><\/h2>\n<p>The next step is to set up an Android device and run the project on the same. You can run a project in a real Android device or by using an emulator.<\/p>\n<p>We chose to go ahead with the tutorial by using a real Android device belonging to a team member.<\/p>\n<p>Begin by plugging in the device and checking the manufacturer code by using lsusb\u00a0command:<\/p>\n<pre># lsusb\r\n\r\nBus 002 Device 002: ID 8087:8000 Intel Corp.\r\n\r\nBus 002 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub\r\n\r\nBus 001 Device 002: ID 8087:8008 Intel Corp.\r\n\r\nBus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub\r\n\r\nBus 004 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub\r\n\r\nBus 003 Device 003: ID 046d:c077 Logitech, Inc. M105 Optical Mouse\r\n\r\nBus 003 Device 002: ID 046d:c31d Logitech, Inc. Media Keyboard K200\r\n\r\nBus 003 Device 006: ID 22b8:2e76 Motorola PCS\r\n\r\nBus 003 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub<\/pre>\n<p>There were a number of devices that were connected with USB. We went ahead with our Android device, which was:<\/p>\n<pre>Bus 003 Device 006: ID 22b8:2e76 Motorola PCS<\/pre>\n<p>From this line of code, you\u2019ll require these four digits, which are a part of the device ID:<\/p>\n<p>22b8:2e76\u00a0\u2013 Device ID<\/p>\n<p>22b8 \u2013 First four-digit identifier for Motorola<\/p>\n<p>Next, you need to copy and paste the following code in the terminal:<\/p>\n<pre># adb devices<\/pre>\n<p>Following this, you\u2019ll be able to view the complete list of devices attached.<\/p>\n<p>TA9300GLMK \u00a0device<\/p>\n<h2>6.\u00a0<strong><b>Running the Project<\/b><\/strong><\/h2>\n<p>Start with the <strong>MyFirstDemoApp<\/strong> project, for which you\u2019ll require two terminals to run the code.<\/p>\n<p>Here\u2019s the code on one terminal:<\/p>\n<pre># cd\u00a0MyFirstDemoApp\r\n\r\n# react-native run-android<\/pre>\n<p><strong>A failed code indicates that the<\/strong> default React Native port is being used by other services in the system. You can then proceed to try the following code:<\/p>\n<pre># adb reverse tcp:8081 tcp:8081<\/pre>\n<p>If this code runs successfully, you can make the following changes to the app:<br \/>\n-Open index.android.js in your text editor<br \/>\n-Change &#8220;Welcome to React Native&#8221; to &#8220;My First Demo APP in React Native on Android&#8221;<br \/>\n-Press the menu button (F2 by default, or \u2318-M in Genymotion) and select Reload JS to see the change<br \/>\n-Run adb logcat *:S ReactNative:V ReactNativeJS:V in a terminal to see your app&#8217;s logs<\/p>\n<h2><strong><b>Conclusion<\/b><\/strong><\/h2>\n<p>Well, that\u2019s it! You\u2019ve successfully installed React Native on Ubuntu 17.10. We hope that it was a successful attempt for you, just like it was for us. Let us know how did you fare in a comment!<\/p>\n","protected":false},"excerpt":{"rendered":"<p>React Native is the hot favorite of developers who want to build a cross-platform mobile app. The technology lets them use JavaScript along with Facebook\u2019s React Library for robust integration with the native platforms and enhance performance. Based on the \u201clearn once, write anywhere\u201d philosophy, React Native has no single way of developing applications. You &hellip; <a href=\"https:\/\/www.moveoapps.com\/blog\/how-to-install-react-native-on-ubuntu-17-10\/\" class=\"more-link\">Continue reading <span class=\"screen-reader-text\">How to install React Native on Ubuntu 17.10<\/span> <span class=\"meta-nav\">&rarr;<\/span><\/a><\/p>\n","protected":false},"author":101019,"featured_media":1436,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[29],"tags":[],"class_list":["post-1285","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-react-native"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v25.9 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>How to install React Native on Ubuntu 17.10<\/title>\n<meta name=\"description\" content=\"React Native is hot favorite among developers who want to build a cross-platform mobile app, developers can use JavaScript with Facebook\u2019s React Library\" \/>\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.moveoapps.com\/blog\/how-to-install-react-native-on-ubuntu-17-10\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to install React Native on Ubuntu 17.10\" \/>\n<meta property=\"og:description\" content=\"React Native is hot favorite among developers who want to build a cross-platform mobile app, developers can use JavaScript with Facebook\u2019s React Library\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.moveoapps.com\/blog\/how-to-install-react-native-on-ubuntu-17-10\/\" \/>\n<meta property=\"og:site_name\" content=\"Moveo Apps\" \/>\n<meta property=\"article:published_time\" content=\"2017-12-27T13:37:45+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2021-10-13T11:09:14+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.moveoapps.com\/blog\/wp-content\/uploads\/2017\/12\/How-to-install-React-Native-on-Ubuntu-17.10.png\" \/>\n\t<meta property=\"og:image:width\" content=\"2560\" \/>\n\t<meta property=\"og:image:height\" content=\"1294\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Vijay Suthar\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@https:\/\/twitter.com\/vijaysutharr\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Vijay Suthar\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.moveoapps.com\/blog\/how-to-install-react-native-on-ubuntu-17-10\/\",\"url\":\"https:\/\/www.moveoapps.com\/blog\/how-to-install-react-native-on-ubuntu-17-10\/\",\"name\":\"How to install React Native on Ubuntu 17.10\",\"isPartOf\":{\"@id\":\"https:\/\/www.moveoapps.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.moveoapps.com\/blog\/how-to-install-react-native-on-ubuntu-17-10\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.moveoapps.com\/blog\/how-to-install-react-native-on-ubuntu-17-10\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.moveoapps.com\/blog\/wp-content\/uploads\/2017\/12\/How-to-install-React-Native-on-Ubuntu-17.10.png\",\"datePublished\":\"2017-12-27T13:37:45+00:00\",\"dateModified\":\"2021-10-13T11:09:14+00:00\",\"author\":{\"@id\":\"https:\/\/www.moveoapps.com\/blog\/#\/schema\/person\/3915e9e4692a39bcab5dde246d60ddcd\"},\"description\":\"React Native is hot favorite among developers who want to build a cross-platform mobile app, developers can use JavaScript with Facebook\u2019s React Library\",\"breadcrumb\":{\"@id\":\"https:\/\/www.moveoapps.com\/blog\/how-to-install-react-native-on-ubuntu-17-10\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.moveoapps.com\/blog\/how-to-install-react-native-on-ubuntu-17-10\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.moveoapps.com\/blog\/how-to-install-react-native-on-ubuntu-17-10\/#primaryimage\",\"url\":\"https:\/\/www.moveoapps.com\/blog\/wp-content\/uploads\/2017\/12\/How-to-install-React-Native-on-Ubuntu-17.10.png\",\"contentUrl\":\"https:\/\/www.moveoapps.com\/blog\/wp-content\/uploads\/2017\/12\/How-to-install-React-Native-on-Ubuntu-17.10.png\",\"width\":2560,\"height\":1294},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.moveoapps.com\/blog\/how-to-install-react-native-on-ubuntu-17-10\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.moveoapps.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to install React Native on Ubuntu 17.10\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.moveoapps.com\/blog\/#website\",\"url\":\"https:\/\/www.moveoapps.com\/blog\/\",\"name\":\"Moveo Apps\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.moveoapps.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.moveoapps.com\/blog\/#\/schema\/person\/3915e9e4692a39bcab5dde246d60ddcd\",\"name\":\"Vijay Suthar\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.moveoapps.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/f61b98cfb6c16358416fe62bc525005db4bfdae002bd66c312396f9fa78eef39?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/f61b98cfb6c16358416fe62bc525005db4bfdae002bd66c312396f9fa78eef39?s=96&d=mm&r=g\",\"caption\":\"Vijay Suthar\"},\"description\":\"Vijay Suthar is a Passionate Network Manager who is specialized in AWS, Azure and all Cloud Technologies. He also posses expertize on Linux &amp; Windows Web Servers, LAN &amp; WAN Operations, Server integrations, Web Securities and Firewalls.\",\"sameAs\":[\"https:\/\/www.moveoapps.com\/\",\"https:\/\/x.com\/https:\/\/twitter.com\/vijaysutharr\"],\"url\":\"https:\/\/www.moveoapps.com\/blog\/author\/vijays-moveoapps\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to install React Native on Ubuntu 17.10","description":"React Native is hot favorite among developers who want to build a cross-platform mobile app, developers can use JavaScript with Facebook\u2019s React Library","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.moveoapps.com\/blog\/how-to-install-react-native-on-ubuntu-17-10\/","og_locale":"en_US","og_type":"article","og_title":"How to install React Native on Ubuntu 17.10","og_description":"React Native is hot favorite among developers who want to build a cross-platform mobile app, developers can use JavaScript with Facebook\u2019s React Library","og_url":"https:\/\/www.moveoapps.com\/blog\/how-to-install-react-native-on-ubuntu-17-10\/","og_site_name":"Moveo Apps","article_published_time":"2017-12-27T13:37:45+00:00","article_modified_time":"2021-10-13T11:09:14+00:00","og_image":[{"width":2560,"height":1294,"url":"https:\/\/www.moveoapps.com\/blog\/wp-content\/uploads\/2017\/12\/How-to-install-React-Native-on-Ubuntu-17.10.png","type":"image\/png"}],"author":"Vijay Suthar","twitter_card":"summary_large_image","twitter_creator":"@https:\/\/twitter.com\/vijaysutharr","twitter_misc":{"Written by":"Vijay Suthar","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/www.moveoapps.com\/blog\/how-to-install-react-native-on-ubuntu-17-10\/","url":"https:\/\/www.moveoapps.com\/blog\/how-to-install-react-native-on-ubuntu-17-10\/","name":"How to install React Native on Ubuntu 17.10","isPartOf":{"@id":"https:\/\/www.moveoapps.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.moveoapps.com\/blog\/how-to-install-react-native-on-ubuntu-17-10\/#primaryimage"},"image":{"@id":"https:\/\/www.moveoapps.com\/blog\/how-to-install-react-native-on-ubuntu-17-10\/#primaryimage"},"thumbnailUrl":"https:\/\/www.moveoapps.com\/blog\/wp-content\/uploads\/2017\/12\/How-to-install-React-Native-on-Ubuntu-17.10.png","datePublished":"2017-12-27T13:37:45+00:00","dateModified":"2021-10-13T11:09:14+00:00","author":{"@id":"https:\/\/www.moveoapps.com\/blog\/#\/schema\/person\/3915e9e4692a39bcab5dde246d60ddcd"},"description":"React Native is hot favorite among developers who want to build a cross-platform mobile app, developers can use JavaScript with Facebook\u2019s React Library","breadcrumb":{"@id":"https:\/\/www.moveoapps.com\/blog\/how-to-install-react-native-on-ubuntu-17-10\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.moveoapps.com\/blog\/how-to-install-react-native-on-ubuntu-17-10\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.moveoapps.com\/blog\/how-to-install-react-native-on-ubuntu-17-10\/#primaryimage","url":"https:\/\/www.moveoapps.com\/blog\/wp-content\/uploads\/2017\/12\/How-to-install-React-Native-on-Ubuntu-17.10.png","contentUrl":"https:\/\/www.moveoapps.com\/blog\/wp-content\/uploads\/2017\/12\/How-to-install-React-Native-on-Ubuntu-17.10.png","width":2560,"height":1294},{"@type":"BreadcrumbList","@id":"https:\/\/www.moveoapps.com\/blog\/how-to-install-react-native-on-ubuntu-17-10\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.moveoapps.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to install React Native on Ubuntu 17.10"}]},{"@type":"WebSite","@id":"https:\/\/www.moveoapps.com\/blog\/#website","url":"https:\/\/www.moveoapps.com\/blog\/","name":"Moveo Apps","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.moveoapps.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/www.moveoapps.com\/blog\/#\/schema\/person\/3915e9e4692a39bcab5dde246d60ddcd","name":"Vijay Suthar","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.moveoapps.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/f61b98cfb6c16358416fe62bc525005db4bfdae002bd66c312396f9fa78eef39?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/f61b98cfb6c16358416fe62bc525005db4bfdae002bd66c312396f9fa78eef39?s=96&d=mm&r=g","caption":"Vijay Suthar"},"description":"Vijay Suthar is a Passionate Network Manager who is specialized in AWS, Azure and all Cloud Technologies. He also posses expertize on Linux &amp; Windows Web Servers, LAN &amp; WAN Operations, Server integrations, Web Securities and Firewalls.","sameAs":["https:\/\/www.moveoapps.com\/","https:\/\/x.com\/https:\/\/twitter.com\/vijaysutharr"],"url":"https:\/\/www.moveoapps.com\/blog\/author\/vijays-moveoapps\/"}]}},"_links":{"self":[{"href":"https:\/\/www.moveoapps.com\/blog\/wp-json\/wp\/v2\/posts\/1285","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.moveoapps.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.moveoapps.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.moveoapps.com\/blog\/wp-json\/wp\/v2\/users\/101019"}],"replies":[{"embeddable":true,"href":"https:\/\/www.moveoapps.com\/blog\/wp-json\/wp\/v2\/comments?post=1285"}],"version-history":[{"count":11,"href":"https:\/\/www.moveoapps.com\/blog\/wp-json\/wp\/v2\/posts\/1285\/revisions"}],"predecessor-version":[{"id":3078,"href":"https:\/\/www.moveoapps.com\/blog\/wp-json\/wp\/v2\/posts\/1285\/revisions\/3078"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.moveoapps.com\/blog\/wp-json\/wp\/v2\/media\/1436"}],"wp:attachment":[{"href":"https:\/\/www.moveoapps.com\/blog\/wp-json\/wp\/v2\/media?parent=1285"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.moveoapps.com\/blog\/wp-json\/wp\/v2\/categories?post=1285"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.moveoapps.com\/blog\/wp-json\/wp\/v2\/tags?post=1285"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}