{"id":19000,"date":"2017-10-19T12:15:14","date_gmt":"2017-10-19T09:15:14","guid":{"rendered":"https:\/\/www.webcodegeeks.com\/?p=19000"},"modified":"2017-10-19T10:54:33","modified_gmt":"2017-10-19T07:54:33","slug":"fixing-npm-node-package-manager-permissions","status":"publish","type":"post","link":"https:\/\/www.webcodegeeks.com\/javascript\/fixing-npm-node-package-manager-permissions\/","title":{"rendered":"Fixing npm (Node Package Manager) permissions"},"content":{"rendered":"<p>In our day to day life, we come across javascript libraries that we require as project dependencies. So to get the required dependencies for javascript we require a package manager which is well known as <code>npm<\/code> or <strong>Node Package Manager<\/strong>.<\/p>\n<p>But, sometimes we do face problems with the permissions of npm. The most common of them being the <code>EACCESS<\/code> error, which means when you try installing a javascript library globally npm does not have the permission to write to the directories that npm uses to store global packages and commands.<\/p>\n<p>But this problem can be solved using three options:<\/p>\n<ol>\n<li><strong>Change the permission to npm\u2019s default directory.<\/strong><\/li>\n<li><strong>Change npm\u2019s\u00a0default directory to another directory.<\/strong><\/li>\n<li><strong>Install node using a package manager that would automatically take care of this.<\/strong><\/li>\n<\/ol>\n<p>Let\u2019s look at the options and how can we configure each of these options<\/p>\n<p>Note:- Since I am a mac user so I would be explaining most of the concepts from the <code>OSX<\/code>\u2018s point of view.<\/p>\n<h3>Option-1: Change the permission to npm\u2019s default directory<\/h3>\n<p><strong>Step-1:<\/strong> Find the path to npm\u2019s directory by using the command <code>sudo npm config get prefix<\/code>. For many systems, it would be <code>\/usr\/local<\/code>.<\/p>\n<p><strong>Step-2:<\/strong> Now, change the owner of the npm\u2019s directory to the name of the <code>current user<\/code> (your username). To accomplish this step please run the following command <code>sudo chown -R $(whoami) $(npm config get prefix)\/{lib\/node_modules,bin,share}<\/code>.. But for OSX version, you may get an error if you are executing this command first. The error would be something like this.<\/p>\n<p><a href=\"http:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2017\/10\/screen-shot-2017-10-19-at-10-23-09-am.png\"><img decoding=\"async\" class=\"aligncenter size-full wp-image-19002\" src=\"http:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2017\/10\/screen-shot-2017-10-19-at-10-23-09-am.png\" alt=\"\" width=\"676\" height=\"341\" srcset=\"https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2017\/10\/screen-shot-2017-10-19-at-10-23-09-am.png 676w, https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2017\/10\/screen-shot-2017-10-19-at-10-23-09-am-300x151.png 300w\" sizes=\"(max-width: 676px) 100vw, 676px\" \/><\/a><\/p>\n<p>If you get this error, try running the command <code>sudo chown -R $USER:$(id -gn $USER) \/Users\/apple\/.config<\/code>\u00a0in order to get access to the local update config store as because the configuration files are stored separately in the <code>.config<\/code>\u00a0directory for OSX based systems.<\/p>\n<h3>Option-2: Change npm\u2019s default directory to another directory<\/h3>\n<p>Sometimes, it may be required to change the npm\u2019s default directory i.e <code>\/usr<\/code>\u00a0if you have to share the system with some other user. In this case, you can configure npm onto a different directory. You can create a hidden directory in the <code>home<\/code> directory and use it to configure npm. The benefit of using a different directory for configuring npm is that you wouldn\u2019t have to use <code>sudo<\/code>\u00a0if you are installing any package <code>globally<\/code>. Follow the steps to change npm\u2019s default directory to another directory.<\/p>\n<p><strong>Step-1:<\/strong> Make a directory for global installations within the home directory using the command <code>mkdir\u00a0~\/.npm-global<\/code>.<\/p>\n<p><strong>Step-2:<\/strong> Configure npm to use the new directory path by using the command <code>npm config set prefix '~\/.npm-global'<\/code>.<\/p>\n<p><strong>Step-3:<\/strong> Open or create a <code>~\/.bash_profile<\/code>\u00a0file and add this line <code>export PATH=~\/.npm-global\/bin:$PATH<\/code>.<\/p>\n<p><strong>Step-4:<\/strong> Back on the command line update your system variables by using the command <code>source ~\/.bash_profile<\/code>.<\/p>\n<p>To test out whether your npm is pointing to the new path just try to install any js package without using <code>sudo<\/code>.\u00a0Just try using <code>npm install -g js_library<\/code>.\u00a0If it successfully installs your library then the path is properly set for npm. Another important thing is if you do not want to edit the <code>.bash_profile<\/code> to set your npm path what you can do is run the command <code>NPM_CONFIG_PREFIX=~\/.npm-global<\/code>\u00a0which would set the new path for npm permanently.<\/p>\n<h3>Option-3: Install node using a package manager<\/h3>\n<p>If you are doing a fresh install of npm on your OSX systems, you can avoid this problem altogether by using the <code>Homebrew<\/code>\u00a0package manager. Homebrew sets up the permissions of the installing files and directories out of the box. To install npm using <code>brew<\/code> just install the <code>hombrew<\/code> package and once the installation is complete just type <code>brew install node<\/code>\u00a0in the command line.<\/p>\n<div class=\"attribution\">\n<table>\n<tbody>\n<tr>\n<td>Published on Web Code Geeks with permission by Soumyajit Basu, partner at our <a href=\"http:\/\/www.webcodegeeks.com\/join-us\/wcg\/\" target=\"_blank\" rel=\"noopener\">WCG program<\/a>. See the original article here: <a href=\"https:\/\/soumyajit2016.wordpress.com\/2017\/10\/19\/fixing-npmnode-package-manager-permissions\/\" target=\"_blank\" rel=\"noopener\">Fixing npm(Node Package Manager) permissions<\/a><\/p>\n<p>Opinions expressed by Web Code Geeks contributors are their own.<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<\/div>\n","protected":false},"excerpt":{"rendered":"<p>In our day to day life, we come across javascript libraries that we require as project dependencies. So to get the required dependencies for javascript we require a package manager which is well known as npm or Node Package Manager. But, sometimes we do face problems with the permissions of npm. The most common of &hellip;<\/p>\n","protected":false},"author":1029,"featured_media":920,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[9],"tags":[],"class_list":["post-19000","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-javascript"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Fixing npm (Node Package Manager) permissions - Web Code Geeks - 2026<\/title>\n<meta name=\"description\" content=\"In our day to day life, we come across javascript libraries that we require as project dependencies. So to get the required dependencies for javascript we\" \/>\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.webcodegeeks.com\/javascript\/fixing-npm-node-package-manager-permissions\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Fixing npm (Node Package Manager) permissions - Web Code Geeks - 2026\" \/>\n<meta property=\"og:description\" content=\"In our day to day life, we come across javascript libraries that we require as project dependencies. So to get the required dependencies for javascript we\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.webcodegeeks.com\/javascript\/fixing-npm-node-package-manager-permissions\/\" \/>\n<meta property=\"og:site_name\" content=\"Web Code Geeks\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/webcodegeeks\" \/>\n<meta property=\"article:author\" content=\"https:\/\/www.facebook.com\/soumyajit.basu\" \/>\n<meta property=\"article:published_time\" content=\"2017-10-19T09:15:14+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2014\/10\/js-logo.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"150\" \/>\n\t<meta property=\"og:image:height\" content=\"150\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Soumyajit Basu\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@SoumyajitBasu19\" \/>\n<meta name=\"twitter:site\" content=\"@webcodegeeks\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Soumyajit Basu\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/www.webcodegeeks.com\/javascript\/fixing-npm-node-package-manager-permissions\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.webcodegeeks.com\/javascript\/fixing-npm-node-package-manager-permissions\/\"},\"author\":{\"name\":\"Soumyajit Basu\",\"@id\":\"https:\/\/www.webcodegeeks.com\/#\/schema\/person\/c2aa0b158203f117998917927a96c276\"},\"headline\":\"Fixing npm (Node Package Manager) permissions\",\"datePublished\":\"2017-10-19T09:15:14+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.webcodegeeks.com\/javascript\/fixing-npm-node-package-manager-permissions\/\"},\"wordCount\":602,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/www.webcodegeeks.com\/#organization\"},\"image\":{\"@id\":\"https:\/\/www.webcodegeeks.com\/javascript\/fixing-npm-node-package-manager-permissions\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2014\/10\/js-logo.jpg\",\"articleSection\":[\"JavaScript\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.webcodegeeks.com\/javascript\/fixing-npm-node-package-manager-permissions\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.webcodegeeks.com\/javascript\/fixing-npm-node-package-manager-permissions\/\",\"url\":\"https:\/\/www.webcodegeeks.com\/javascript\/fixing-npm-node-package-manager-permissions\/\",\"name\":\"Fixing npm (Node Package Manager) permissions - Web Code Geeks - 2026\",\"isPartOf\":{\"@id\":\"https:\/\/www.webcodegeeks.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.webcodegeeks.com\/javascript\/fixing-npm-node-package-manager-permissions\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.webcodegeeks.com\/javascript\/fixing-npm-node-package-manager-permissions\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2014\/10\/js-logo.jpg\",\"datePublished\":\"2017-10-19T09:15:14+00:00\",\"description\":\"In our day to day life, we come across javascript libraries that we require as project dependencies. So to get the required dependencies for javascript we\",\"breadcrumb\":{\"@id\":\"https:\/\/www.webcodegeeks.com\/javascript\/fixing-npm-node-package-manager-permissions\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.webcodegeeks.com\/javascript\/fixing-npm-node-package-manager-permissions\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.webcodegeeks.com\/javascript\/fixing-npm-node-package-manager-permissions\/#primaryimage\",\"url\":\"https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2014\/10\/js-logo.jpg\",\"contentUrl\":\"https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2014\/10\/js-logo.jpg\",\"width\":150,\"height\":150},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.webcodegeeks.com\/javascript\/fixing-npm-node-package-manager-permissions\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.webcodegeeks.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"JavaScript\",\"item\":\"https:\/\/www.webcodegeeks.com\/category\/javascript\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Fixing npm (Node Package Manager) permissions\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.webcodegeeks.com\/#website\",\"url\":\"https:\/\/www.webcodegeeks.com\/\",\"name\":\"Web Code Geeks\",\"description\":\"Web Developers Resource Center\",\"publisher\":{\"@id\":\"https:\/\/www.webcodegeeks.com\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.webcodegeeks.com\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.webcodegeeks.com\/#organization\",\"name\":\"Exelixis Media P.C.\",\"url\":\"https:\/\/www.webcodegeeks.com\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.webcodegeeks.com\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2022\/06\/exelixis-logo.png\",\"contentUrl\":\"https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2022\/06\/exelixis-logo.png\",\"width\":864,\"height\":246,\"caption\":\"Exelixis Media P.C.\"},\"image\":{\"@id\":\"https:\/\/www.webcodegeeks.com\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/webcodegeeks\",\"https:\/\/x.com\/webcodegeeks\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.webcodegeeks.com\/#\/schema\/person\/c2aa0b158203f117998917927a96c276\",\"name\":\"Soumyajit Basu\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.webcodegeeks.com\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/ca834774616f992a60dd418c3424f7d678f645d0974d880abe735f481c8b1407?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/ca834774616f992a60dd418c3424f7d678f645d0974d880abe735f481c8b1407?s=96&d=mm&r=g\",\"caption\":\"Soumyajit Basu\"},\"description\":\"Soumyajit is a QA\/DevOps engineer by profession and a technology enthusiast by passion. He loves communicating about technology and is an author at his own blog platform as well as in Dzone and Web Code Geeks.\",\"sameAs\":[\"https:\/\/soumyajit2016.wordpress.com\/\",\"https:\/\/www.facebook.com\/soumyajit.basu\",\"https:\/\/www.linkedin.com\/in\/soumyajit-basu-5a783886\/\",\"https:\/\/x.com\/SoumyajitBasu19\"],\"url\":\"https:\/\/www.webcodegeeks.com\/author\/soumyajit-basu\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Fixing npm (Node Package Manager) permissions - Web Code Geeks - 2026","description":"In our day to day life, we come across javascript libraries that we require as project dependencies. So to get the required dependencies for javascript we","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.webcodegeeks.com\/javascript\/fixing-npm-node-package-manager-permissions\/","og_locale":"en_US","og_type":"article","og_title":"Fixing npm (Node Package Manager) permissions - Web Code Geeks - 2026","og_description":"In our day to day life, we come across javascript libraries that we require as project dependencies. So to get the required dependencies for javascript we","og_url":"https:\/\/www.webcodegeeks.com\/javascript\/fixing-npm-node-package-manager-permissions\/","og_site_name":"Web Code Geeks","article_publisher":"https:\/\/www.facebook.com\/webcodegeeks","article_author":"https:\/\/www.facebook.com\/soumyajit.basu","article_published_time":"2017-10-19T09:15:14+00:00","og_image":[{"width":150,"height":150,"url":"https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2014\/10\/js-logo.jpg","type":"image\/jpeg"}],"author":"Soumyajit Basu","twitter_card":"summary_large_image","twitter_creator":"@SoumyajitBasu19","twitter_site":"@webcodegeeks","twitter_misc":{"Written by":"Soumyajit Basu","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.webcodegeeks.com\/javascript\/fixing-npm-node-package-manager-permissions\/#article","isPartOf":{"@id":"https:\/\/www.webcodegeeks.com\/javascript\/fixing-npm-node-package-manager-permissions\/"},"author":{"name":"Soumyajit Basu","@id":"https:\/\/www.webcodegeeks.com\/#\/schema\/person\/c2aa0b158203f117998917927a96c276"},"headline":"Fixing npm (Node Package Manager) permissions","datePublished":"2017-10-19T09:15:14+00:00","mainEntityOfPage":{"@id":"https:\/\/www.webcodegeeks.com\/javascript\/fixing-npm-node-package-manager-permissions\/"},"wordCount":602,"commentCount":0,"publisher":{"@id":"https:\/\/www.webcodegeeks.com\/#organization"},"image":{"@id":"https:\/\/www.webcodegeeks.com\/javascript\/fixing-npm-node-package-manager-permissions\/#primaryimage"},"thumbnailUrl":"https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2014\/10\/js-logo.jpg","articleSection":["JavaScript"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.webcodegeeks.com\/javascript\/fixing-npm-node-package-manager-permissions\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.webcodegeeks.com\/javascript\/fixing-npm-node-package-manager-permissions\/","url":"https:\/\/www.webcodegeeks.com\/javascript\/fixing-npm-node-package-manager-permissions\/","name":"Fixing npm (Node Package Manager) permissions - Web Code Geeks - 2026","isPartOf":{"@id":"https:\/\/www.webcodegeeks.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.webcodegeeks.com\/javascript\/fixing-npm-node-package-manager-permissions\/#primaryimage"},"image":{"@id":"https:\/\/www.webcodegeeks.com\/javascript\/fixing-npm-node-package-manager-permissions\/#primaryimage"},"thumbnailUrl":"https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2014\/10\/js-logo.jpg","datePublished":"2017-10-19T09:15:14+00:00","description":"In our day to day life, we come across javascript libraries that we require as project dependencies. So to get the required dependencies for javascript we","breadcrumb":{"@id":"https:\/\/www.webcodegeeks.com\/javascript\/fixing-npm-node-package-manager-permissions\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.webcodegeeks.com\/javascript\/fixing-npm-node-package-manager-permissions\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.webcodegeeks.com\/javascript\/fixing-npm-node-package-manager-permissions\/#primaryimage","url":"https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2014\/10\/js-logo.jpg","contentUrl":"https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2014\/10\/js-logo.jpg","width":150,"height":150},{"@type":"BreadcrumbList","@id":"https:\/\/www.webcodegeeks.com\/javascript\/fixing-npm-node-package-manager-permissions\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.webcodegeeks.com\/"},{"@type":"ListItem","position":2,"name":"JavaScript","item":"https:\/\/www.webcodegeeks.com\/category\/javascript\/"},{"@type":"ListItem","position":3,"name":"Fixing npm (Node Package Manager) permissions"}]},{"@type":"WebSite","@id":"https:\/\/www.webcodegeeks.com\/#website","url":"https:\/\/www.webcodegeeks.com\/","name":"Web Code Geeks","description":"Web Developers Resource Center","publisher":{"@id":"https:\/\/www.webcodegeeks.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.webcodegeeks.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.webcodegeeks.com\/#organization","name":"Exelixis Media P.C.","url":"https:\/\/www.webcodegeeks.com\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.webcodegeeks.com\/#\/schema\/logo\/image\/","url":"https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2022\/06\/exelixis-logo.png","contentUrl":"https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2022\/06\/exelixis-logo.png","width":864,"height":246,"caption":"Exelixis Media P.C."},"image":{"@id":"https:\/\/www.webcodegeeks.com\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/webcodegeeks","https:\/\/x.com\/webcodegeeks"]},{"@type":"Person","@id":"https:\/\/www.webcodegeeks.com\/#\/schema\/person\/c2aa0b158203f117998917927a96c276","name":"Soumyajit Basu","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.webcodegeeks.com\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/ca834774616f992a60dd418c3424f7d678f645d0974d880abe735f481c8b1407?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/ca834774616f992a60dd418c3424f7d678f645d0974d880abe735f481c8b1407?s=96&d=mm&r=g","caption":"Soumyajit Basu"},"description":"Soumyajit is a QA\/DevOps engineer by profession and a technology enthusiast by passion. He loves communicating about technology and is an author at his own blog platform as well as in Dzone and Web Code Geeks.","sameAs":["https:\/\/soumyajit2016.wordpress.com\/","https:\/\/www.facebook.com\/soumyajit.basu","https:\/\/www.linkedin.com\/in\/soumyajit-basu-5a783886\/","https:\/\/x.com\/SoumyajitBasu19"],"url":"https:\/\/www.webcodegeeks.com\/author\/soumyajit-basu\/"}]}},"_links":{"self":[{"href":"https:\/\/www.webcodegeeks.com\/wp-json\/wp\/v2\/posts\/19000","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.webcodegeeks.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.webcodegeeks.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.webcodegeeks.com\/wp-json\/wp\/v2\/users\/1029"}],"replies":[{"embeddable":true,"href":"https:\/\/www.webcodegeeks.com\/wp-json\/wp\/v2\/comments?post=19000"}],"version-history":[{"count":0,"href":"https:\/\/www.webcodegeeks.com\/wp-json\/wp\/v2\/posts\/19000\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.webcodegeeks.com\/wp-json\/wp\/v2\/media\/920"}],"wp:attachment":[{"href":"https:\/\/www.webcodegeeks.com\/wp-json\/wp\/v2\/media?parent=19000"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.webcodegeeks.com\/wp-json\/wp\/v2\/categories?post=19000"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.webcodegeeks.com\/wp-json\/wp\/v2\/tags?post=19000"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}