{"id":5179,"date":"2019-10-19T23:03:09","date_gmt":"2019-10-19T17:33:09","guid":{"rendered":"https:\/\/code4developers.com\/?p=5179"},"modified":"2019-10-19T23:03:09","modified_gmt":"2019-10-19T17:33:09","slug":"install-mongodb-on-mac","status":"publish","type":"post","link":"https:\/\/code4developers.com\/install-mongodb-on-mac\/","title":{"rendered":"Install MongoDB on Mac"},"content":{"rendered":"<p><img  loading=\"lazy\"  decoding=\"async\"  data-attachment-id=\"5180\"  data-permalink=\"https:\/\/code4developers.com\/install-mongodb-on-mac\/hqdefault\/\"  data-orig-file=\"https:\/\/i0.wp.com\/code4developers.com\/wp-content\/uploads\/2019\/10\/hqdefault.jpg?fit=480%2C360&amp;ssl=1\"  data-orig-size=\"480,360\"  data-comments-opened=\"1\"  data-image-meta=\"{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}\"  data-image-title=\"MongoDb on MAC\"  data-image-description=\"\"  data-image-caption=\"\"  data-medium-file=\"https:\/\/i0.wp.com\/code4developers.com\/wp-content\/uploads\/2019\/10\/hqdefault.jpg?fit=300%2C225&amp;ssl=1\"  data-large-file=\"https:\/\/i0.wp.com\/code4developers.com\/wp-content\/uploads\/2019\/10\/hqdefault.jpg?fit=480%2C360&amp;ssl=1\"  class=\" wp-image-5180 aligncenter pk-lazyload\"  src=\"data:image\/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABAQMAAAAl21bKAAAAA1BMVEUAAP+KeNJXAAAAAXRSTlMAQObYZgAAAAlwSFlzAAAOxAAADsQBlSsOGwAAAApJREFUCNdjYAAAAAIAAeIhvDMAAAAASUVORK5CYII=\"  alt=\"MongoDb on MAC\"  width=\"492\"  height=\"369\"  data-pk-sizes=\"auto\"  data-ls-sizes=\"auto, (max-width: 492px) 100vw, 492px\"  data-pk-src=\"https:\/\/code4developers.com\/wp-content\/uploads\/2019\/10\/hqdefault-300x225.jpg\"  data-pk-srcset=\"https:\/\/i0.wp.com\/code4developers.com\/wp-content\/uploads\/2019\/10\/hqdefault.jpg?resize=300%2C225&amp;ssl=1 300w, https:\/\/i0.wp.com\/code4developers.com\/wp-content\/uploads\/2019\/10\/hqdefault.jpg?resize=320%2C240&amp;ssl=1 320w, https:\/\/i0.wp.com\/code4developers.com\/wp-content\/uploads\/2019\/10\/hqdefault.jpg?resize=120%2C90&amp;ssl=1 120w, https:\/\/i0.wp.com\/code4developers.com\/wp-content\/uploads\/2019\/10\/hqdefault.jpg?resize=90%2C68&amp;ssl=1 90w, https:\/\/i0.wp.com\/code4developers.com\/wp-content\/uploads\/2019\/10\/hqdefault.jpg?resize=240%2C180&amp;ssl=1 240w, https:\/\/i0.wp.com\/code4developers.com\/wp-content\/uploads\/2019\/10\/hqdefault.jpg?resize=180%2C136&amp;ssl=1 180w, https:\/\/i0.wp.com\/code4developers.com\/wp-content\/uploads\/2019\/10\/hqdefault.jpg?w=480&amp;ssl=1 480w\" ><\/p>\n<p>In this quick tutorial, I am going to be showing you how to install MongoDB with the 4 STEPS on your MAC.<\/p>\n<ul>\n<li style=\"list-style-type: none;\">\n<ul>\n<li>Install Brew<\/li>\n<li>Install MongoDB<\/li>\n<li>Run Mongo Server<\/li>\n<li>Make A query To MongoDo<\/li>\n<\/ul>\n<\/li>\n<\/ul>\n<p><!--more--><\/p>\n<h2 id=\"step-1-install-brew\"><strong>STEP #1 Install Brew<\/strong><\/h2>\n<p>Open up your terminal by going to\u00a0<strong>Applications<\/strong>\u00a0-&gt;\u00a0<strong>Utilities<\/strong>\u00a0-&gt;\u00a0<strong>Terminal<\/strong>\u00a0and Copy and Paste the following command into the Terminal. Hit enter to begin installing brew.<\/p>\n<pre class=\"theme:dark-terminal lang:default decode:true \">\/usr\/bin\/ruby -e \"$(curl -fsSL https:\/\/raw.githubusercontent.com\/Homebrew\/install\/master\/install)\"<\/pre>\n<h2 id=\"step-2-install-mongodb\"><strong>STEP<\/strong><strong>\u00a0#2 Install MongoDB<\/strong><\/h2>\n<p class=\"p9\"><b><i><\/i><\/b><span class=\"s1\">Once Brew is installed, it is time to install\u00a0<strong>MongoDB<\/strong>\u00a0by issuing the following command on the Terminal:<\/span><\/p>\n<pre class=\"theme:dark-terminal lang:default decode:true \">brew install mongodb<\/pre>\n<p>Next, create a folder by typing the following command:<\/p>\n<pre class=\"theme:dark-terminal lang:default decode:true \">sudo mkdir -p \/data\/db<\/pre>\n<p><span class=\"s1\">You will be prompted to enter your computer password. The below command will take you to<\/span><span class=\"s1\">\u00a0the folder path that contains all of the mongo server files.<\/span><\/p>\n<pre class=\"theme:dark-terminal lang:default decode:true \">sudo chown yourhomedirectoryname \/data\/db<\/pre>\n<p>That\u2019s it! At this point, you have successfully installed MongoDB on your Mac!<\/p>\n<p>Now, open up two Terminal Windows, one is to run MongoDB Server and other one is Mongo Shell where you can write\u00a0 write Mongo Queries.<\/p>\n<h2 id=\"step-3-run-mongo-server\"><strong>STEP #3 Run Mongo Server<\/strong><\/h2>\n<p>Type the command below to start the server.<\/p>\n<pre class=\"theme:dark-terminal lang:default decode:true \">mongod<\/pre>\n<p>Now, the server is running. If you want to stop the server, you can use the\u00a0<strong>Control + C<\/strong>\u00a0 keyboard shortcut or close the Terminal window.<\/p>\n<h2 id=\"step-4-make-a-query-to-mongodb\"><strong>STEP #4 Make A Query To MongoDB<\/strong><\/h2>\n<p>Once the server is up and running, open up a new tab in the Terminal window and type the command below that will give you the mongo shell in which you can write mongo queries.<\/p>\n<pre class=\"theme:dark-terminal lang:default decode:true \">mongo<\/pre>\n<p>If you want to see all the databases, use the following command.<\/p>\n<pre class=\"theme:dark-terminal lang:default decode:true\">show dbs<\/pre>\n<p>Sometimes, writing queries on the Mongo Shell would be really hard because there is no syntax highlight and it becomes tedious when you execute big queries.<\/p>\n<p>Luckily, I recently found a mac application called\u00a0<a href=\"https:\/\/mongobooster.com\/\" target=\"_blank\" rel=\"noopener noreferrer\">MongoBooster<\/a>\u00a0 (FREE) that will replace the mongo shell Terminal window. Remember, you must keep the server running.<\/p>\n<p>Once you install MongoBooster, you need to connect to the server by going to\u00a0<strong>File\u2192 Connect\u2192 Create\u00a0<\/strong>and add your server information.<\/p>\n<p>The server has to be \u201clocalhost\u201d and the port is \u201c27017\u201d which is a default Mongo Server port. See the screenshot below:<\/p>\n<p><img  loading=\"lazy\"  decoding=\"async\"  data-attachment-id=\"5182\"  data-permalink=\"https:\/\/code4developers.com\/install-mongodb-on-mac\/screen-shot-2017-03-04-at-12-30-59-pm-2-768x480\/\"  data-orig-file=\"https:\/\/i0.wp.com\/code4developers.com\/wp-content\/uploads\/2019\/10\/Screen-Shot-2017-03-04-at-12.30.59-PM-2-768x480.png?fit=768%2C480&amp;ssl=1\"  data-orig-size=\"768,480\"  data-comments-opened=\"1\"  data-image-meta=\"{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}\"  data-image-title=\"ServerConfiguration\"  data-image-description=\"\"  data-image-caption=\"\"  data-medium-file=\"https:\/\/i0.wp.com\/code4developers.com\/wp-content\/uploads\/2019\/10\/Screen-Shot-2017-03-04-at-12.30.59-PM-2-768x480.png?fit=300%2C188&amp;ssl=1\"  data-large-file=\"https:\/\/i0.wp.com\/code4developers.com\/wp-content\/uploads\/2019\/10\/Screen-Shot-2017-03-04-at-12.30.59-PM-2-768x480.png?fit=700%2C438&amp;ssl=1\"  class=\" wp-image-5182 aligncenter pk-lazyload\"  src=\"data:image\/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABAQMAAAAl21bKAAAAA1BMVEUAAP+KeNJXAAAAAXRSTlMAQObYZgAAAAlwSFlzAAAOxAAADsQBlSsOGwAAAApJREFUCNdjYAAAAAIAAeIhvDMAAAAASUVORK5CYII=\"  alt=\"ServerConfiguration\"  width=\"575\"  height=\"361\"  data-pk-sizes=\"auto\"  data-ls-sizes=\"auto, (max-width: 575px) 100vw, 575px\"  data-pk-src=\"https:\/\/code4developers.com\/wp-content\/uploads\/2019\/10\/Screen-Shot-2017-03-04-at-12.30.59-PM-2-768x480-300x188.png\"  data-pk-srcset=\"https:\/\/i0.wp.com\/code4developers.com\/wp-content\/uploads\/2019\/10\/Screen-Shot-2017-03-04-at-12.30.59-PM-2-768x480.png?resize=300%2C188&amp;ssl=1 300w, https:\/\/i0.wp.com\/code4developers.com\/wp-content\/uploads\/2019\/10\/Screen-Shot-2017-03-04-at-12.30.59-PM-2-768x480.png?resize=120%2C75&amp;ssl=1 120w, https:\/\/i0.wp.com\/code4developers.com\/wp-content\/uploads\/2019\/10\/Screen-Shot-2017-03-04-at-12.30.59-PM-2-768x480.png?resize=90%2C56&amp;ssl=1 90w, https:\/\/i0.wp.com\/code4developers.com\/wp-content\/uploads\/2019\/10\/Screen-Shot-2017-03-04-at-12.30.59-PM-2-768x480.png?resize=320%2C200&amp;ssl=1 320w, https:\/\/i0.wp.com\/code4developers.com\/wp-content\/uploads\/2019\/10\/Screen-Shot-2017-03-04-at-12.30.59-PM-2-768x480.png?resize=240%2C150&amp;ssl=1 240w, https:\/\/i0.wp.com\/code4developers.com\/wp-content\/uploads\/2019\/10\/Screen-Shot-2017-03-04-at-12.30.59-PM-2-768x480.png?resize=180%2C113&amp;ssl=1 180w, https:\/\/i0.wp.com\/code4developers.com\/wp-content\/uploads\/2019\/10\/Screen-Shot-2017-03-04-at-12.30.59-PM-2-768x480.png?resize=700%2C438&amp;ssl=1 700w\" ><\/p>\n<p>Once you have successfully connected to the server via MongoBooster, you can start writing Mongo queries in the Mongo Shell which is nice like below.<\/p>\n<p><img  loading=\"lazy\"  decoding=\"async\"  data-attachment-id=\"5183\"  data-permalink=\"https:\/\/code4developers.com\/install-mongodb-on-mac\/screen-shot-2017-03-04-at-12-34-38-pm-2-768x480\/\"  data-orig-file=\"https:\/\/i0.wp.com\/code4developers.com\/wp-content\/uploads\/2019\/10\/Screen-Shot-2017-03-04-at-12.34.38-PM-2-768x480.png?fit=768%2C480&amp;ssl=1\"  data-orig-size=\"768,480\"  data-comments-opened=\"1\"  data-image-meta=\"{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}\"  data-image-title=\"Mongo Shell\"  data-image-description=\"\"  data-image-caption=\"\"  data-medium-file=\"https:\/\/i0.wp.com\/code4developers.com\/wp-content\/uploads\/2019\/10\/Screen-Shot-2017-03-04-at-12.34.38-PM-2-768x480.png?fit=300%2C188&amp;ssl=1\"  data-large-file=\"https:\/\/i0.wp.com\/code4developers.com\/wp-content\/uploads\/2019\/10\/Screen-Shot-2017-03-04-at-12.34.38-PM-2-768x480.png?fit=700%2C438&amp;ssl=1\"  class=\" wp-image-5183 aligncenter pk-lazyload\"  src=\"data:image\/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABAQMAAAAl21bKAAAAA1BMVEUAAP+KeNJXAAAAAXRSTlMAQObYZgAAAAlwSFlzAAAOxAAADsQBlSsOGwAAAApJREFUCNdjYAAAAAIAAeIhvDMAAAAASUVORK5CYII=\"  alt=\"Mongo Shell\"  width=\"533\"  height=\"334\"  data-pk-sizes=\"auto\"  data-ls-sizes=\"auto, (max-width: 533px) 100vw, 533px\"  data-pk-src=\"https:\/\/code4developers.com\/wp-content\/uploads\/2019\/10\/Screen-Shot-2017-03-04-at-12.34.38-PM-2-768x480-300x188.png\"  data-pk-srcset=\"https:\/\/i0.wp.com\/code4developers.com\/wp-content\/uploads\/2019\/10\/Screen-Shot-2017-03-04-at-12.34.38-PM-2-768x480.png?resize=300%2C188&amp;ssl=1 300w, https:\/\/i0.wp.com\/code4developers.com\/wp-content\/uploads\/2019\/10\/Screen-Shot-2017-03-04-at-12.34.38-PM-2-768x480.png?resize=120%2C75&amp;ssl=1 120w, https:\/\/i0.wp.com\/code4developers.com\/wp-content\/uploads\/2019\/10\/Screen-Shot-2017-03-04-at-12.34.38-PM-2-768x480.png?resize=90%2C56&amp;ssl=1 90w, https:\/\/i0.wp.com\/code4developers.com\/wp-content\/uploads\/2019\/10\/Screen-Shot-2017-03-04-at-12.34.38-PM-2-768x480.png?resize=320%2C200&amp;ssl=1 320w, https:\/\/i0.wp.com\/code4developers.com\/wp-content\/uploads\/2019\/10\/Screen-Shot-2017-03-04-at-12.34.38-PM-2-768x480.png?resize=560%2C350&amp;ssl=1 560w, https:\/\/i0.wp.com\/code4developers.com\/wp-content\/uploads\/2019\/10\/Screen-Shot-2017-03-04-at-12.34.38-PM-2-768x480.png?resize=240%2C150&amp;ssl=1 240w, https:\/\/i0.wp.com\/code4developers.com\/wp-content\/uploads\/2019\/10\/Screen-Shot-2017-03-04-at-12.34.38-PM-2-768x480.png?resize=180%2C113&amp;ssl=1 180w, https:\/\/i0.wp.com\/code4developers.com\/wp-content\/uploads\/2019\/10\/Screen-Shot-2017-03-04-at-12.34.38-PM-2-768x480.png?resize=640%2C400&amp;ssl=1 640w, https:\/\/i0.wp.com\/code4developers.com\/wp-content\/uploads\/2019\/10\/Screen-Shot-2017-03-04-at-12.34.38-PM-2-768x480.png?resize=768%2C480&amp;ssl=1 768w, https:\/\/i0.wp.com\/code4developers.com\/wp-content\/uploads\/2019\/10\/Screen-Shot-2017-03-04-at-12.34.38-PM-2-768x480.png?resize=700%2C438&amp;ssl=1 700w\" ><\/p>\n<p>All you have to do is write some mongo queries on the top window and click RUN button and you can see the result on bottom window.<\/p>\n<p>I really enjoy working with MongoBooster as it gives me code completion and syntax highlight.<\/p>\n<p>Thank You for reading\u2026<\/p>\n","protected":false},"excerpt":{"rendered":"<p>In this quick tutorial, I am going to be showing you how to install MongoDB with the 4 STEPS on your MAC. Install Brew Install MongoDB Run Mongo Server Make&hellip;<\/p>\n","protected":false},"author":7,"featured_media":5181,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"jetpack_post_was_ever_published":false,"_jetpack_newsletter_access":"","_jetpack_dont_email_post_to_subs":false,"_jetpack_newsletter_tier_id":0,"_jetpack_memberships_contains_paywalled_content":false,"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[296,2],"tags":[300,301,302,299,298,297],"powerkit_post_featured":[],"class_list":{"0":"post-5179","1":"post","2":"type-post","3":"status-publish","4":"format-standard","5":"has-post-thumbnail","7":"category-mongodb","8":"category-javascript","9":"tag-install-brew","10":"tag-install-mongodb","11":"tag-make-a-query-to-mongodb","12":"tag-mongo-shell","13":"tag-mongobooster","14":"tag-mongodb"},"jetpack_featured_media_url":"https:\/\/i0.wp.com\/code4developers.com\/wp-content\/uploads\/2019\/10\/MongoDBicon.png?fit=400%2C400&ssl=1","jetpack_sharing_enabled":true,"jetpack_shortlink":"https:\/\/wp.me\/p8NAi4-1lx","jetpack-related-posts":[{"id":2568,"url":"https:\/\/code4developers.com\/angularjs-application-end-to-end-testing-with-protractor-tool-part-1\/","url_meta":{"origin":5179,"position":0},"title":"AngularJS Application End to End Testing with Protractor Tool : Part 1","author":"Sneha Jaiswal","date":"June 8, 2017","format":false,"excerpt":"What is End to End Testing? End to End Testing is used to determine the performance of application as per requirement. For large and complex applications manual testing is not sufficient to verify the correctness of new features, catch bugs and notice regression. To resolve issue of integration between components\u2026","rel":"","context":"In &quot;AngularJs&quot;","block_context":{"text":"AngularJs","link":"https:\/\/code4developers.com\/category\/angularjs\/"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":12847,"url":"https:\/\/code4developers.com\/connect-firebase-database-and-angular-app\/","url_meta":{"origin":5179,"position":1},"title":"Connect Firebase Realtime NoSQL Database with Angular App from Scratch","author":"Arif Khoja","date":"August 30, 2020","format":false,"excerpt":"In this tutorial, We are going to learn\u00a0How to connect Firebase Realtime NoSQL cloud database with Angular app from scratch?. We\u2019ll be using\u00a0AngularFire library for setting up Firebase database in the Angular web application. Firebase is a Google product, It is a real-time NoSQL cloud database that allows you to\u2026","rel":"","context":"In &quot;Angular&quot;","block_context":{"text":"Angular","link":"https:\/\/code4developers.com\/category\/angular\/"},"img":{"alt_text":"connect-angular-firebase","src":"https:\/\/i0.wp.com\/code4developers.com\/wp-content\/uploads\/2020\/08\/connect-angular-firebase.jpg?fit=715%2C350&ssl=1&resize=350%2C200","width":350,"height":200,"srcset":"https:\/\/i0.wp.com\/code4developers.com\/wp-content\/uploads\/2020\/08\/connect-angular-firebase.jpg?fit=715%2C350&ssl=1&resize=350%2C200 1x, https:\/\/i0.wp.com\/code4developers.com\/wp-content\/uploads\/2020\/08\/connect-angular-firebase.jpg?fit=715%2C350&ssl=1&resize=525%2C300 1.5x, https:\/\/i0.wp.com\/code4developers.com\/wp-content\/uploads\/2020\/08\/connect-angular-firebase.jpg?fit=715%2C350&ssl=1&resize=700%2C400 2x"},"classes":[]},{"id":2586,"url":"https:\/\/code4developers.com\/angular-4-installations\/","url_meta":{"origin":5179,"position":2},"title":"Angular 4 Installations","author":"Nisarg Dave","date":"June 14, 2017","format":false,"excerpt":"Introduction This article demonstrates how to install Angular 4 in your local system and start working with angular\/cli using basic commands. What is Angular 4? Before starting with Angular 4, we need to know about Angular 2. Angular 2 is totally different kind of framework from Angular 1. Angular 1\u2026","rel":"","context":"In &quot;Angular&quot;","block_context":{"text":"Angular","link":"https:\/\/code4developers.com\/category\/angular\/"},"img":{"alt_text":"","src":"https:\/\/i0.wp.com\/code4developers.com\/wp-content\/uploads\/2017\/06\/1.png?resize=350%2C200","width":350,"height":200,"srcset":"https:\/\/i0.wp.com\/code4developers.com\/wp-content\/uploads\/2017\/06\/1.png?resize=350%2C200 1x, https:\/\/i0.wp.com\/code4developers.com\/wp-content\/uploads\/2017\/06\/1.png?resize=525%2C300 1.5x, https:\/\/i0.wp.com\/code4developers.com\/wp-content\/uploads\/2017\/06\/1.png?resize=700%2C400 2x, https:\/\/i0.wp.com\/code4developers.com\/wp-content\/uploads\/2017\/06\/1.png?resize=1050%2C600 3x"},"classes":[]},{"id":3544,"url":"https:\/\/code4developers.com\/angular-6-crud-part-1-project-setup-routing-service\/","url_meta":{"origin":5179,"position":3},"title":"Angular 6 CRUD \u2013 Part 1: Project Setup, Routing, Service","author":"Nisarg Dave","date":"May 9, 2018","format":false,"excerpt":"This article is Part 1 Angular 6 CRUD. In this article and upcoming article, we will discuss performing CRUD operations in Angular 6 i.e. Creating, Reading, Updating and Deleting in Angular 6 with simple examples. We will also discuss about the Angular 6 Project setup, apply Routing, create service to\u2026","rel":"","context":"In &quot;Angular&quot;","block_context":{"text":"Angular","link":"https:\/\/code4developers.com\/category\/angular\/"},"img":{"alt_text":"","src":"https:\/\/i0.wp.com\/code4developers.com\/wp-content\/uploads\/2018\/05\/json-server-call-300x297.png?resize=350%2C200&ssl=1","width":350,"height":200},"classes":[]},{"id":2658,"url":"https:\/\/code4developers.com\/angular-4-application-with-visual-studio\/","url_meta":{"origin":5179,"position":4},"title":"Angular 4 in Visual Studio","author":"Nisarg Dave","date":"June 22, 2017","format":false,"excerpt":"Introduction In this article, we will discuss about how to set up and start Angular 4 in visual studio. As many of developers have worked with Microsoft tools and technologies, they preferred visual studio as web development platform. Step 1: Install Node.js and npm The first step is to install\u2026","rel":"","context":"In &quot;Angular&quot;","block_context":{"text":"Angular","link":"https:\/\/code4developers.com\/category\/angular\/"},"img":{"alt_text":"VS15","src":"https:\/\/i0.wp.com\/code4developers.com\/wp-content\/uploads\/2017\/06\/1-2.png?resize=350%2C200","width":350,"height":200},"classes":[]},{"id":5161,"url":"https:\/\/code4developers.com\/getting-started-with-google-maps-places-api\/","url_meta":{"origin":5179,"position":5},"title":"Getting started with Google Maps Places API","author":"Arif Khoja","date":"October 17, 2019","format":false,"excerpt":"If you want to get all of the restaurant data from a specific city by text search in your application, you have come to the right place. In this tutorial, you\u2019re going to learn how to do exactly that using Google Maps Places API. Also, I will be covering how\u2026","rel":"","context":"In &quot;Cloud&quot;","block_context":{"text":"Cloud","link":"https:\/\/code4developers.com\/category\/cloud\/"},"img":{"alt_text":"places-api","src":"https:\/\/i0.wp.com\/code4developers.com\/wp-content\/uploads\/2019\/10\/places-api.png?fit=1026%2C1200&ssl=1&resize=350%2C200","width":350,"height":200,"srcset":"https:\/\/i0.wp.com\/code4developers.com\/wp-content\/uploads\/2019\/10\/places-api.png?fit=1026%2C1200&ssl=1&resize=350%2C200 1x, https:\/\/i0.wp.com\/code4developers.com\/wp-content\/uploads\/2019\/10\/places-api.png?fit=1026%2C1200&ssl=1&resize=525%2C300 1.5x, https:\/\/i0.wp.com\/code4developers.com\/wp-content\/uploads\/2019\/10\/places-api.png?fit=1026%2C1200&ssl=1&resize=700%2C400 2x"},"classes":[]}],"jetpack_likes_enabled":true,"_links":{"self":[{"href":"https:\/\/code4developers.com\/wp-json\/wp\/v2\/posts\/5179","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/code4developers.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/code4developers.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/code4developers.com\/wp-json\/wp\/v2\/users\/7"}],"replies":[{"embeddable":true,"href":"https:\/\/code4developers.com\/wp-json\/wp\/v2\/comments?post=5179"}],"version-history":[{"count":3,"href":"https:\/\/code4developers.com\/wp-json\/wp\/v2\/posts\/5179\/revisions"}],"predecessor-version":[{"id":5186,"href":"https:\/\/code4developers.com\/wp-json\/wp\/v2\/posts\/5179\/revisions\/5186"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/code4developers.com\/wp-json\/wp\/v2\/media\/5181"}],"wp:attachment":[{"href":"https:\/\/code4developers.com\/wp-json\/wp\/v2\/media?parent=5179"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/code4developers.com\/wp-json\/wp\/v2\/categories?post=5179"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/code4developers.com\/wp-json\/wp\/v2\/tags?post=5179"},{"taxonomy":"powerkit_post_featured","embeddable":true,"href":"https:\/\/code4developers.com\/wp-json\/wp\/v2\/powerkit_post_featured?post=5179"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}