{"id":1112,"date":"2014-10-14T16:15:48","date_gmt":"2014-10-14T13:15:48","guid":{"rendered":"http:\/\/www.webcodegeeks.com\/?p=1112"},"modified":"2014-10-14T15:56:14","modified_gmt":"2014-10-14T12:56:14","slug":"getting-a-new-node-project-started-with-npm","status":"publish","type":"post","link":"https:\/\/www.webcodegeeks.com\/javascript\/node-js\/getting-a-new-node-project-started-with-npm\/","title":{"rendered":"Getting a new node project started with npm"},"content":{"rendered":"<p>The aim of this guide is to get people getting started with <a href=\"http:\/\/nodejs.org\">Node.js<\/a> and <a href=\"http:\/\/npmjs.org\/\">npm<\/a>, while also showing some of the handy commands I use to bootstrap my projects.<\/p>\n<p>&nbsp;<\/p>\n<p>&nbsp;<\/p>\n<p>&nbsp;<\/p>\n<p>&nbsp;<\/p>\n<p>&nbsp;<\/p>\n<p>Create your project directory.<\/p>\n<pre class=\"brush: php; title: ; notranslate\" title=\"\">mkdir npmtest<\/pre>\n<p>Change to the directory you just created.<\/p>\n<pre class=\"brush: php; title: ; notranslate\" title=\"\">cd !$<\/pre>\n<p>Tell git to make a repo.<\/p>\n<pre class=\"brush: php; title: ; notranslate\" title=\"\">git init<\/pre>\n<p>Pull down a preconfigured <code>.gitignore<\/code> file for node projects from github.<\/p>\n<pre class=\"brush: php; title: ; notranslate\" title=\"\">wget https:\/\/raw2.github.com\/github\/gitignore\/master\/Node.gitignore -O .gitignore<\/pre>\n<p>Pull down a basic <code>Makefile<\/code> I use for my projects.<\/p>\n<pre class=\"brush: php; title: ; notranslate\" title=\"\">wget https:\/\/gist.github.com\/wolfeidau\/8748317\/raw\/172a6adb79777676a8815da5719ef659fb66a35b\/Makefile<\/pre>\n<p>This make file contains a few handy targets, these are:<\/p>\n<ul>\n<li><code>test<\/code> runs tests in the <code>test<\/code> folder using the <a href=\"http:\/\/visionmedia.github.io\/mocha\/\">mocha<\/a> test framework.<\/li>\n<li><code>jshint<\/code> uses <a href=\"http:\/\/www.jshint.com\/\">jshint<\/a> to check over the code.<\/li>\n<li><code>skel<\/code> generates a basic structure for my project creating <code>index.js<\/code> and, <code>lib<\/code>, <code>example<\/code> and <code>test<\/code> directories and installs mocha and <a href=\"http:\/\/chaijs.com\">chai<\/a> the BDD \/ TDD assertion library.<\/li>\n<li>The default target which is invoked by just running <code>make<\/code>, this runs the <code>jshint<\/code> and <code>test<\/code> targets.<\/li>\n<\/ul>\n<p><em>Note:<\/em> You will need to install jshint globally using <code>npm install -g jshint<\/code>.<\/p>\n<p>Now we will use the <code>skel<\/code> target to generate our project structure.<\/p>\n<pre class=\"brush: php; title: ; notranslate\" title=\"\">make skel<\/pre>\n<p>Create a project on github using <a href=\"https:\/\/github.com\/github\/hub\">hub<\/a>, if your on osx you can install this with <a href=\"https:\/\/github.com\/Homebrew\/homebrew\">homebrew<\/a>. We do this sooner rather than later so npm can pick this information up when building the <code>package.json<\/code>.<\/p>\n<pre class=\"brush: php; title: ; notranslate\" title=\"\">hub create<\/pre>\n<p>Now initialise your project.<\/p>\n<pre class=\"brush: php; title: ; notranslate\" title=\"\">npm init<\/pre>\n<p>This should ask for a bunch of information, note leave the version 0.0.0 we will change this later. For those interested this is driven by <a href=\"https:\/\/github.com\/npm\/init-package-json\">init-package-json<\/a>.<\/p>\n<pre class=\"brush: php; title: ; notranslate\" title=\"\">...\r\nname: (npmtest)\r\nversion: (0.0.0)\r\ndescription: Some NPM test.\r\nentry point: (index.js)\r\ntest command: make test\r\ngit repository: (git:\/\/github.com\/wolfeidau\/npmtest.git)\r\nkeywords: npm\r\nauthor: Mark Wolfe &lt;mark@wolfe.id.au&gt;\r\nlicense: (ISC) MIT\r\nAbout to write to \/Users\/markw\/Code\/Javascript\/npmtest\/package.json:\r\n\r\n{\r\n  'name': 'npmtest',\r\n  'version': '0.0.0',\r\n  'description': 'Some NPM test.',\r\n  'main': 'index.js',\r\n  'scripts': {\r\n    'test': 'make test'\r\n  },\r\n  'repository': {\r\n    'type': 'git',\r\n    'url': 'git:\/\/github.com\/wolfeidau\/npmtest.git'\r\n  },\r\n  'keywords': &#x5B;\r\n    'npm'\r\n  ],\r\n  'author': 'Mark Wolfe &lt;mark@wolfe.id.au&gt;',\r\n  'license': 'MIT',\r\n  'bugs': {\r\n    'url': 'https:\/\/github.com\/wolfeidau\/npmtest\/issues'\r\n  },\r\n  'homepage': 'https:\/\/github.com\/wolfeidau\/npmtest'\r\n}\r\n\r\nIs this ok? (yes) yes<\/pre>\n<p>Once you have added some code to <code>index.js<\/code> and some tests of course, add and commit your code.<\/p>\n<pre class=\"brush: php; title: ; notranslate\" title=\"\">git add .\r\ngit commit -a 'Initial release'<\/pre>\n<p>Now your ready to release use npm to update the version. There are three options for this command being <code>major<\/code>, <code>minor<\/code> and <code>patch<\/code> each of which increments the version numbers in that order. In the example below we should go from <code>0.0.0<\/code> to <code>0.1.0<\/code>.<\/p>\n<pre class=\"brush: php; title: ; notranslate\" title=\"\">npm version minor<\/pre>\n<p>Run your tests!<\/p>\n<pre class=\"brush: php; title: ; notranslate\" title=\"\">npm test<\/pre>\n<p>Push to github, the version command automatically tags your project so we can check it out if we need!<\/p>\n<pre class=\"brush: php; title: ; notranslate\" title=\"\">git push origin master --tags<\/pre>\n<p>Ship it.<\/p>\n<pre class=\"brush: php; title: ; notranslate\" title=\"\">npm publish<\/pre>\n<div class=\"attribution\">\n<table>\n<tbody>\n<tr>\n<td><span class=\"reference\">Reference: <\/span><\/td>\n<td><a href=\"http:\/\/www.wolfe.id.au\/2014\/02\/01\/getting-a-new-node-project-started-with-npm\/\">Getting a new node project started with npm<\/a> from our <a href=\"http:\/\/www.webcodegeeks.com\/wcg\/\">WCG partner<\/a> Mark Wolfe at the <a href=\"http:\/\/www.wolfe.id.au\/\">Mark Wolfe&#8217;s Blog<\/a> blog.<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<\/div>\n","protected":false},"excerpt":{"rendered":"<p>The aim of this guide is to get people getting started with Node.js and npm, while also showing some of the handy commands I use to bootstrap my projects. &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Create your project directory. mkdir npmtest Change to the directory you just created. cd !$ Tell git to make a repo. &hellip;<\/p>\n","protected":false},"author":8,"featured_media":924,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[26],"tags":[],"class_list":["post-1112","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-node-js"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Getting a new node project started with npm - Web Code Geeks - 2026<\/title>\n<meta name=\"description\" content=\"The aim of this guide is to get people getting started with Node.js and npm, while also showing some of the handy commands I use to bootstrap my\" \/>\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\/node-js\/getting-a-new-node-project-started-with-npm\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Getting a new node project started with npm - Web Code Geeks - 2026\" \/>\n<meta property=\"og:description\" content=\"The aim of this guide is to get people getting started with Node.js and npm, while also showing some of the handy commands I use to bootstrap my\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.webcodegeeks.com\/javascript\/node-js\/getting-a-new-node-project-started-with-npm\/\" \/>\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:published_time\" content=\"2014-10-14T13:15:48+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2014\/10\/nodejs-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=\"Mark Wolfe\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@webcodegeeks\" \/>\n<meta name=\"twitter:site\" content=\"@webcodegeeks\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Mark Wolfe\" \/>\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\/node-js\/getting-a-new-node-project-started-with-npm\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.webcodegeeks.com\/javascript\/node-js\/getting-a-new-node-project-started-with-npm\/\"},\"author\":{\"name\":\"Mark Wolfe\",\"@id\":\"https:\/\/www.webcodegeeks.com\/#\/schema\/person\/9991558a44d78c5d7c49c3c228d65b02\"},\"headline\":\"Getting a new node project started with npm\",\"datePublished\":\"2014-10-14T13:15:48+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.webcodegeeks.com\/javascript\/node-js\/getting-a-new-node-project-started-with-npm\/\"},\"wordCount\":516,\"commentCount\":2,\"publisher\":{\"@id\":\"https:\/\/www.webcodegeeks.com\/#organization\"},\"image\":{\"@id\":\"https:\/\/www.webcodegeeks.com\/javascript\/node-js\/getting-a-new-node-project-started-with-npm\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2014\/10\/nodejs-logo.jpg\",\"articleSection\":[\"Node.js\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.webcodegeeks.com\/javascript\/node-js\/getting-a-new-node-project-started-with-npm\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.webcodegeeks.com\/javascript\/node-js\/getting-a-new-node-project-started-with-npm\/\",\"url\":\"https:\/\/www.webcodegeeks.com\/javascript\/node-js\/getting-a-new-node-project-started-with-npm\/\",\"name\":\"Getting a new node project started with npm - Web Code Geeks - 2026\",\"isPartOf\":{\"@id\":\"https:\/\/www.webcodegeeks.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.webcodegeeks.com\/javascript\/node-js\/getting-a-new-node-project-started-with-npm\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.webcodegeeks.com\/javascript\/node-js\/getting-a-new-node-project-started-with-npm\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2014\/10\/nodejs-logo.jpg\",\"datePublished\":\"2014-10-14T13:15:48+00:00\",\"description\":\"The aim of this guide is to get people getting started with Node.js and npm, while also showing some of the handy commands I use to bootstrap my\",\"breadcrumb\":{\"@id\":\"https:\/\/www.webcodegeeks.com\/javascript\/node-js\/getting-a-new-node-project-started-with-npm\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.webcodegeeks.com\/javascript\/node-js\/getting-a-new-node-project-started-with-npm\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.webcodegeeks.com\/javascript\/node-js\/getting-a-new-node-project-started-with-npm\/#primaryimage\",\"url\":\"https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2014\/10\/nodejs-logo.jpg\",\"contentUrl\":\"https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2014\/10\/nodejs-logo.jpg\",\"width\":150,\"height\":150},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.webcodegeeks.com\/javascript\/node-js\/getting-a-new-node-project-started-with-npm\/#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\":\"Node.js\",\"item\":\"https:\/\/www.webcodegeeks.com\/category\/javascript\/node-js\/\"},{\"@type\":\"ListItem\",\"position\":4,\"name\":\"Getting a new node project started with npm\"}]},{\"@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\/9991558a44d78c5d7c49c3c228d65b02\",\"name\":\"Mark Wolfe\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.webcodegeeks.com\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/f01357edc53c691f2809751dbc8e1d3407a73daf41580715f343aed01fc46252?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/f01357edc53c691f2809751dbc8e1d3407a73daf41580715f343aed01fc46252?s=96&d=mm&r=g\",\"caption\":\"Mark Wolfe\"},\"sameAs\":[\"http:\/\/www.wolfe.id.au\/\"],\"url\":\"https:\/\/www.webcodegeeks.com\/author\/mark-wolfe\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Getting a new node project started with npm - Web Code Geeks - 2026","description":"The aim of this guide is to get people getting started with Node.js and npm, while also showing some of the handy commands I use to bootstrap my","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\/node-js\/getting-a-new-node-project-started-with-npm\/","og_locale":"en_US","og_type":"article","og_title":"Getting a new node project started with npm - Web Code Geeks - 2026","og_description":"The aim of this guide is to get people getting started with Node.js and npm, while also showing some of the handy commands I use to bootstrap my","og_url":"https:\/\/www.webcodegeeks.com\/javascript\/node-js\/getting-a-new-node-project-started-with-npm\/","og_site_name":"Web Code Geeks","article_publisher":"https:\/\/www.facebook.com\/webcodegeeks","article_published_time":"2014-10-14T13:15:48+00:00","og_image":[{"width":150,"height":150,"url":"https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2014\/10\/nodejs-logo.jpg","type":"image\/jpeg"}],"author":"Mark Wolfe","twitter_card":"summary_large_image","twitter_creator":"@webcodegeeks","twitter_site":"@webcodegeeks","twitter_misc":{"Written by":"Mark Wolfe","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.webcodegeeks.com\/javascript\/node-js\/getting-a-new-node-project-started-with-npm\/#article","isPartOf":{"@id":"https:\/\/www.webcodegeeks.com\/javascript\/node-js\/getting-a-new-node-project-started-with-npm\/"},"author":{"name":"Mark Wolfe","@id":"https:\/\/www.webcodegeeks.com\/#\/schema\/person\/9991558a44d78c5d7c49c3c228d65b02"},"headline":"Getting a new node project started with npm","datePublished":"2014-10-14T13:15:48+00:00","mainEntityOfPage":{"@id":"https:\/\/www.webcodegeeks.com\/javascript\/node-js\/getting-a-new-node-project-started-with-npm\/"},"wordCount":516,"commentCount":2,"publisher":{"@id":"https:\/\/www.webcodegeeks.com\/#organization"},"image":{"@id":"https:\/\/www.webcodegeeks.com\/javascript\/node-js\/getting-a-new-node-project-started-with-npm\/#primaryimage"},"thumbnailUrl":"https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2014\/10\/nodejs-logo.jpg","articleSection":["Node.js"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.webcodegeeks.com\/javascript\/node-js\/getting-a-new-node-project-started-with-npm\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.webcodegeeks.com\/javascript\/node-js\/getting-a-new-node-project-started-with-npm\/","url":"https:\/\/www.webcodegeeks.com\/javascript\/node-js\/getting-a-new-node-project-started-with-npm\/","name":"Getting a new node project started with npm - Web Code Geeks - 2026","isPartOf":{"@id":"https:\/\/www.webcodegeeks.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.webcodegeeks.com\/javascript\/node-js\/getting-a-new-node-project-started-with-npm\/#primaryimage"},"image":{"@id":"https:\/\/www.webcodegeeks.com\/javascript\/node-js\/getting-a-new-node-project-started-with-npm\/#primaryimage"},"thumbnailUrl":"https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2014\/10\/nodejs-logo.jpg","datePublished":"2014-10-14T13:15:48+00:00","description":"The aim of this guide is to get people getting started with Node.js and npm, while also showing some of the handy commands I use to bootstrap my","breadcrumb":{"@id":"https:\/\/www.webcodegeeks.com\/javascript\/node-js\/getting-a-new-node-project-started-with-npm\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.webcodegeeks.com\/javascript\/node-js\/getting-a-new-node-project-started-with-npm\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.webcodegeeks.com\/javascript\/node-js\/getting-a-new-node-project-started-with-npm\/#primaryimage","url":"https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2014\/10\/nodejs-logo.jpg","contentUrl":"https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2014\/10\/nodejs-logo.jpg","width":150,"height":150},{"@type":"BreadcrumbList","@id":"https:\/\/www.webcodegeeks.com\/javascript\/node-js\/getting-a-new-node-project-started-with-npm\/#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":"Node.js","item":"https:\/\/www.webcodegeeks.com\/category\/javascript\/node-js\/"},{"@type":"ListItem","position":4,"name":"Getting a new node project started with npm"}]},{"@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\/9991558a44d78c5d7c49c3c228d65b02","name":"Mark Wolfe","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.webcodegeeks.com\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/f01357edc53c691f2809751dbc8e1d3407a73daf41580715f343aed01fc46252?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/f01357edc53c691f2809751dbc8e1d3407a73daf41580715f343aed01fc46252?s=96&d=mm&r=g","caption":"Mark Wolfe"},"sameAs":["http:\/\/www.wolfe.id.au\/"],"url":"https:\/\/www.webcodegeeks.com\/author\/mark-wolfe\/"}]}},"_links":{"self":[{"href":"https:\/\/www.webcodegeeks.com\/wp-json\/wp\/v2\/posts\/1112","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\/8"}],"replies":[{"embeddable":true,"href":"https:\/\/www.webcodegeeks.com\/wp-json\/wp\/v2\/comments?post=1112"}],"version-history":[{"count":0,"href":"https:\/\/www.webcodegeeks.com\/wp-json\/wp\/v2\/posts\/1112\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.webcodegeeks.com\/wp-json\/wp\/v2\/media\/924"}],"wp:attachment":[{"href":"https:\/\/www.webcodegeeks.com\/wp-json\/wp\/v2\/media?parent=1112"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.webcodegeeks.com\/wp-json\/wp\/v2\/categories?post=1112"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.webcodegeeks.com\/wp-json\/wp\/v2\/tags?post=1112"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}