{"id":102228,"date":"2026-01-28T12:59:41","date_gmt":"2026-01-28T07:29:41","guid":{"rendered":"https:\/\/www.seminarsonly.com\/news\/?p=102228"},"modified":"2026-01-28T13:07:31","modified_gmt":"2026-01-28T07:37:31","slug":"node-exe-npm-error-code-enoent-quick-solution","status":"publish","type":"post","link":"https:\/\/seminarsonly.com\/news\/node-exe-npm-error-code-enoent-quick-solution\/","title":{"rendered":"node.exe NPM Error Code ENOENT | Quick Solution"},"content":{"rendered":"<h3 data-path-to-node=\"0\"><span style=\"color: #008000;\"><em>The error code <b data-path-to-node=\"0\" data-index-in-node=\"15\">ENOENT<\/b> stands for <b data-path-to-node=\"0\" data-index-in-node=\"33\">&#8220;Error NO ENTry&#8221;<\/b>. In plain English, this means <b data-path-to-node=\"1\" data-index-in-node=\"29\">Node.js or npm is trying to open a file or directory that does not exist.<\/b><\/em><\/span><\/h3>\n<p data-path-to-node=\"2\">Here is the step-by-step guide to fixing it, ordered from the most common cause to the more complex ones.<\/p>\n<h3 data-path-to-node=\"3\"><span style=\"color: #000080;\"><b data-path-to-node=\"3\" data-index-in-node=\"0\">1. You are in the Wrong Directory (Most Common)<\/b><\/span><\/h3>\n<p data-path-to-node=\"4\">If you just opened your terminal and typed <code data-path-to-node=\"4\" data-index-in-node=\"43\">npm start<\/code> or <code data-path-to-node=\"4\" data-index-in-node=\"56\">npm install<\/code>, you are likely not inside your project folder yet.<\/p>\n<ul data-path-to-node=\"5\">\n<li>\n<p data-path-to-node=\"5,0,0\"><b data-path-to-node=\"5,0,0\" data-index-in-node=\"0\">The Check:<\/b> Type <code data-path-to-node=\"5,0,0\" data-index-in-node=\"16\">ls<\/code> (Mac\/Linux) or <code data-path-to-node=\"5,0,0\" data-index-in-node=\"34\">dir<\/code> (Windows).<\/p>\n<\/li>\n<li>\n<p data-path-to-node=\"5,1,0\"><b data-path-to-node=\"5,1,0\" data-index-in-node=\"0\">What to look for:<\/b> Do you see a file named <b data-path-to-node=\"5,1,0\" data-index-in-node=\"42\"><code data-path-to-node=\"5,1,0\" data-index-in-node=\"42\">package.json<\/code><\/b> in the list?<\/p>\n<\/li>\n<li>\n<p data-path-to-node=\"5,2,0\"><b data-path-to-node=\"5,2,0\" data-index-in-node=\"0\">The Fix:<\/b> If you don&#8217;t see it, you need to <code data-path-to-node=\"5,2,0\" data-index-in-node=\"42\">cd<\/code> into the correct folder first.<\/p>\n<div class=\"code-block ng-tns-c1567467916-64 ng-animate-disabled ng-trigger ng-trigger-codeBlockRevealAnimation\" data-hveid=\"0\" data-ved=\"0CAAQhtANahcKEwjRgs3c2q2SAxUAAAAAHQAAAAAQSg\">\n<div class=\"code-block-decoration header-formatted gds-title-s ng-tns-c1567467916-64 ng-star-inserted\"><span class=\"ng-tns-c1567467916-64\">Bash<\/span><\/div>\n<div class=\"formatted-code-block-internal-container ng-tns-c1567467916-64\">\n<div class=\"animated-opacity ng-tns-c1567467916-64\">\n<pre class=\"ng-tns-c1567467916-64\"><code class=\"code-container formatted ng-tns-c1567467916-64\" role=\"text\" data-test-id=\"code-content\"><span class=\"hljs-built_in\">cd<\/span> path\/to\/your\/project\r\nnpm install\r\n<\/code><\/pre>\n<\/div>\n<\/div>\n<\/div>\n<\/li>\n<\/ul>\n<h3 data-path-to-node=\"6\"><span style=\"color: #000080;\"><b data-path-to-node=\"6\" data-index-in-node=\"0\">2. Your <code data-path-to-node=\"6\" data-index-in-node=\"8\">package-lock.json<\/code> or Cache is Corrupted<\/b><\/span><\/h3>\n<p data-path-to-node=\"7\">Sometimes the map npm uses to find files gets out of sync with what is actually on your disk.<\/p>\n<ul data-path-to-node=\"8\">\n<li>\n<p data-path-to-node=\"8,0,0\"><b data-path-to-node=\"8,0,0\" data-index-in-node=\"0\">The Fix:<\/b> Run these commands one by one to force a clean reset:<\/p>\n<div class=\"code-block ng-tns-c1567467916-65 ng-animate-disabled ng-trigger ng-trigger-codeBlockRevealAnimation\" data-hveid=\"0\" data-ved=\"0CAAQhtANahcKEwjRgs3c2q2SAxUAAAAAHQAAAAAQSw\">\n<div class=\"code-block-decoration header-formatted gds-title-s ng-tns-c1567467916-65 ng-star-inserted\"><span class=\"ng-tns-c1567467916-65\">Bash<\/span><\/div>\n<div class=\"formatted-code-block-internal-container ng-tns-c1567467916-65\">\n<div class=\"animated-opacity ng-tns-c1567467916-65\">\n<pre class=\"ng-tns-c1567467916-65\"><code class=\"code-container formatted ng-tns-c1567467916-65\" role=\"text\" data-test-id=\"code-content\">npm cache verify\r\n<span class=\"hljs-comment\"># If that doesn't work, try the nuclear option:<\/span>\r\nrm -rf node_modules package-lock.json <span class=\"hljs-comment\"># (On Windows use: del package-lock.json and rmdir \/s \/q node_modules)<\/span>\r\nnpm install\r\n<\/code><\/pre>\n<\/div>\n<\/div>\n<\/div>\n<\/li>\n<\/ul>\n<h3 data-path-to-node=\"9\">Also Read : <a href=\"https:\/\/www.seminarsonly.com\/news\/arc-raiders-stuck-loading-into-match-is-arc-raiders-down-right-now\/\">ARC Raiders Stuck Loading into Match<\/a><\/h3>\n<h3 data-path-to-node=\"9\"><span style=\"color: #000080;\"><b data-path-to-node=\"9\" data-index-in-node=\"0\">3. A Missing System File (Global ENOENT)<\/b><\/span><\/h3>\n<p data-path-to-node=\"10\">If the error mentions <code data-path-to-node=\"10\" data-index-in-node=\"22\">node.exe<\/code> specifically in the path (e.g., <code data-path-to-node=\"10\" data-index-in-node=\"63\">spawn C:\\Program Files\\nodejs\\node.exe ENOENT<\/code>), it might mean your Node.js installation is broken or moved.<\/p>\n<ul data-path-to-node=\"11\">\n<li>\n<p data-path-to-node=\"11,0,0\"><b data-path-to-node=\"11,0,0\" data-index-in-node=\"0\">The Fix:<\/b><\/p>\n<ol start=\"1\" data-path-to-node=\"11,0,1\">\n<li>\n<p data-path-to-node=\"11,0,1,0,0\"><b data-path-to-node=\"11,0,1,0,0\" data-index-in-node=\"0\">Reinstall Node.js:<\/b> Download the latest LTS version from <a class=\"ng-star-inserted\" href=\"https:\/\/nodejs.org\/\" target=\"_blank\" rel=\"noopener\" data-hveid=\"0\" data-ved=\"0CAAQ_4QMahcKEwjRgs3c2q2SAxUAAAAAHQAAAAAQTA\">nodejs.org<\/a> and run the installer. This repairs the broken paths.<\/p>\n<\/li>\n<li>\n<p data-path-to-node=\"11,0,1,1,0\"><b data-path-to-node=\"11,0,1,1,0\" data-index-in-node=\"0\">Restart Terminal:<\/b> Close your command prompt\/VS Code completely and reopen it to load the new paths.<\/p>\n<\/li>\n<\/ol>\n<\/li>\n<\/ul>\n<h3 data-path-to-node=\"12\"><span style=\"color: #000080;\"><b data-path-to-node=\"12\" data-index-in-node=\"0\">4. A Script is Referencing a Missing File<\/b><\/span><\/h3>\n<p data-path-to-node=\"13\">If the error happens <i data-path-to-node=\"13\" data-index-in-node=\"21\">after<\/i> <code data-path-to-node=\"13\" data-index-in-node=\"27\">npm install<\/code> runs successfully, usually when you run <code data-path-to-node=\"13\" data-index-in-node=\"79\">npm start<\/code> or <code data-path-to-node=\"13\" data-index-in-node=\"92\">npm run build<\/code>, check your <code data-path-to-node=\"13\" data-index-in-node=\"118\">package.json<\/code> file.<\/p>\n<ul data-path-to-node=\"14\">\n<li>\n<p data-path-to-node=\"14,0,0\"><b data-path-to-node=\"14,0,0\" data-index-in-node=\"0\">The Check:<\/b> Open <code data-path-to-node=\"14,0,0\" data-index-in-node=\"16\">package.json<\/code> and look at the <b data-path-to-node=\"14,0,0\" data-index-in-node=\"45\">&#8220;scripts&#8221;<\/b> section.<\/p>\n<div class=\"code-block ng-tns-c1567467916-66 ng-animate-disabled ng-trigger ng-trigger-codeBlockRevealAnimation\" data-hveid=\"0\" data-ved=\"0CAAQhtANahcKEwjRgs3c2q2SAxUAAAAAHQAAAAAQTQ\">\n<div class=\"code-block-decoration header-formatted gds-title-s ng-tns-c1567467916-66 ng-star-inserted\">\n<p><span class=\"ng-tns-c1567467916-66\">JSON<\/span><\/p>\n<div class=\"buttons ng-tns-c1567467916-66 ng-star-inserted\"><\/div>\n<\/div>\n<div class=\"formatted-code-block-internal-container ng-tns-c1567467916-66\">\n<div class=\"animated-opacity ng-tns-c1567467916-66\">\n<pre class=\"ng-tns-c1567467916-66\"><code class=\"code-container formatted ng-tns-c1567467916-66\" role=\"text\" data-test-id=\"code-content\"><span class=\"hljs-string\">\"scripts\"<\/span>: {\r\n  <span class=\"hljs-attr\">\"start\"<\/span>: <span class=\"hljs-string\">\"node server.js\"<\/span>\r\n}\r\n<\/code><\/pre>\n<\/div>\n<\/div>\n<\/div>\n<\/li>\n<li>\n<p data-path-to-node=\"14,1,0\"><b data-path-to-node=\"14,1,0\" data-index-in-node=\"0\">The Fix:<\/b> Does <code data-path-to-node=\"14,1,0\" data-index-in-node=\"14\">server.js<\/code> actually exist in that exact location? If your file is inside a <code data-path-to-node=\"14,1,0\" data-index-in-node=\"88\">src<\/code> folder, you must update the script to <code data-path-to-node=\"14,1,0\" data-index-in-node=\"130\">\"node src\/server.js\"<\/code>.<\/p>\n<\/li>\n<\/ul>\n<h3 data-path-to-node=\"15\"><span style=\"color: #000080;\"><b data-path-to-node=\"15\" data-index-in-node=\"0\">5. Windows-Specific Issue (Spaces in Path)<\/b><\/span><\/h3>\n<p data-path-to-node=\"16\">If you are on Windows and your project path has spaces (e.g., <code data-path-to-node=\"16\" data-index-in-node=\"62\">C:\\Users\\My Name\\Project<\/code>), npm sometimes fails to read the path correctly.<\/p>\n<ul data-path-to-node=\"17\">\n<li>\n<p data-path-to-node=\"17,0,0\"><b data-path-to-node=\"17,0,0\" data-index-in-node=\"0\">The Fix:<\/b> Move your project folder to a simple path like <code data-path-to-node=\"17,0,0\" data-index-in-node=\"56\">C:\\Dev\\Project<\/code> to see if the error vanishes.<\/p>\n<\/li>\n<\/ul>\n<h2 data-path-to-node=\"18\"><span style=\"color: #800000;\"><b data-path-to-node=\"18\" data-index-in-node=\"0\">Quick Summary:<\/b> <\/span><\/h2>\n<p data-path-to-node=\"18\">90% of the time, <b data-path-to-node=\"18\" data-index-in-node=\"32\">ENOENT<\/b> means you simply need to <code data-path-to-node=\"18\" data-index-in-node=\"64\">cd<\/code> into the folder that contains <code data-path-to-node=\"18\" data-index-in-node=\"97\">package.json<\/code> before running commands.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>The error code ENOENT stands for &#8220;Error NO ENTry&#8221;. In plain English, this means Node.js or npm is trying to open a file or directory that does not exist. Here&hellip;<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[6048],"tags":[],"class_list":["post-102228","post","type-post","status-publish","format-standard","hentry","category-error-fix"],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v27.2 (Yoast SEO v27.2) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>node.exe NPM Error Code ENOENT | Quick Solution - Seminarsonly.com<\/title>\n<meta name=\"description\" content=\"The error code ENOENT stands for &quot;Error NO ENTry&quot;. In plain English, this means Node.js or npm is trying to open a file or directory that does not exist.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/seminarsonly.com\/news\/node-exe-npm-error-code-enoent-quick-solution\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"node.exe NPM Error Code ENOENT | Quick Solution\" \/>\n<meta property=\"og:description\" content=\"The error code ENOENT stands for &quot;Error NO ENTry&quot;. In plain English, this means Node.js or npm is trying to open a file or directory that does not exist.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/seminarsonly.com\/news\/node-exe-npm-error-code-enoent-quick-solution\/\" \/>\n<meta property=\"og:site_name\" content=\"Seminarsonly.com\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/facebook.com\/seminarsonly\" \/>\n<meta property=\"article:published_time\" content=\"2026-01-28T07:29:41+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-01-28T07:37:31+00:00\" \/>\n<meta name=\"author\" content=\"Freddy John\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@seminarsonly\" \/>\n<meta name=\"twitter:site\" content=\"@seminarsonly\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Freddy John\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/seminarsonly.com\/news\/node-exe-npm-error-code-enoent-quick-solution\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/seminarsonly.com\/news\/node-exe-npm-error-code-enoent-quick-solution\/\"},\"author\":{\"name\":\"Freddy John\",\"@id\":\"https:\/\/seminarsonly.com\/news\/#\/schema\/person\/75cf706896b7210fb0a84651adc258bd\"},\"headline\":\"node.exe NPM Error Code ENOENT | Quick Solution\",\"datePublished\":\"2026-01-28T07:29:41+00:00\",\"dateModified\":\"2026-01-28T07:37:31+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/seminarsonly.com\/news\/node-exe-npm-error-code-enoent-quick-solution\/\"},\"wordCount\":348,\"commentCount\":0,\"articleSection\":[\"Error Fix\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/seminarsonly.com\/news\/node-exe-npm-error-code-enoent-quick-solution\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/seminarsonly.com\/news\/node-exe-npm-error-code-enoent-quick-solution\/\",\"url\":\"https:\/\/seminarsonly.com\/news\/node-exe-npm-error-code-enoent-quick-solution\/\",\"name\":\"node.exe NPM Error Code ENOENT | Quick Solution - Seminarsonly.com\",\"isPartOf\":{\"@id\":\"https:\/\/seminarsonly.com\/news\/#website\"},\"datePublished\":\"2026-01-28T07:29:41+00:00\",\"dateModified\":\"2026-01-28T07:37:31+00:00\",\"author\":{\"@id\":\"https:\/\/seminarsonly.com\/news\/#\/schema\/person\/75cf706896b7210fb0a84651adc258bd\"},\"description\":\"The error code ENOENT stands for \\\"Error NO ENTry\\\". In plain English, this means Node.js or npm is trying to open a file or directory that does not exist.\",\"breadcrumb\":{\"@id\":\"https:\/\/seminarsonly.com\/news\/node-exe-npm-error-code-enoent-quick-solution\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/seminarsonly.com\/news\/node-exe-npm-error-code-enoent-quick-solution\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/seminarsonly.com\/news\/node-exe-npm-error-code-enoent-quick-solution\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/seminarsonly.com\/news\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"node.exe NPM Error Code ENOENT | Quick Solution\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/seminarsonly.com\/news\/#website\",\"url\":\"https:\/\/seminarsonly.com\/news\/\",\"name\":\"Seminarsonly.com\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/seminarsonly.com\/news\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/seminarsonly.com\/news\/#\/schema\/person\/75cf706896b7210fb0a84651adc258bd\",\"name\":\"Freddy John\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/secure.gravatar.com\/avatar\/671d452f5fe9027ab894cbed50911cc764b2c16878222070bf044f21705d4c94?s=96&d=mm&r=g\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/671d452f5fe9027ab894cbed50911cc764b2c16878222070bf044f21705d4c94?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/671d452f5fe9027ab894cbed50911cc764b2c16878222070bf044f21705d4c94?s=96&d=mm&r=g\",\"caption\":\"Freddy John\"},\"sameAs\":[\"https:\/\/seminarsonly.com\/news\"],\"url\":\"https:\/\/seminarsonly.com\/news\/author\/anupvnaick_51wq8y4s\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"node.exe NPM Error Code ENOENT | Quick Solution - Seminarsonly.com","description":"The error code ENOENT stands for \"Error NO ENTry\". In plain English, this means Node.js or npm is trying to open a file or directory that does not exist.","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:\/\/seminarsonly.com\/news\/node-exe-npm-error-code-enoent-quick-solution\/","og_locale":"en_US","og_type":"article","og_title":"node.exe NPM Error Code ENOENT | Quick Solution","og_description":"The error code ENOENT stands for \"Error NO ENTry\". In plain English, this means Node.js or npm is trying to open a file or directory that does not exist.","og_url":"https:\/\/seminarsonly.com\/news\/node-exe-npm-error-code-enoent-quick-solution\/","og_site_name":"Seminarsonly.com","article_publisher":"https:\/\/facebook.com\/seminarsonly","article_published_time":"2026-01-28T07:29:41+00:00","article_modified_time":"2026-01-28T07:37:31+00:00","author":"Freddy John","twitter_card":"summary_large_image","twitter_creator":"@seminarsonly","twitter_site":"@seminarsonly","twitter_misc":{"Written by":"Freddy John","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/seminarsonly.com\/news\/node-exe-npm-error-code-enoent-quick-solution\/#article","isPartOf":{"@id":"https:\/\/seminarsonly.com\/news\/node-exe-npm-error-code-enoent-quick-solution\/"},"author":{"name":"Freddy John","@id":"https:\/\/seminarsonly.com\/news\/#\/schema\/person\/75cf706896b7210fb0a84651adc258bd"},"headline":"node.exe NPM Error Code ENOENT | Quick Solution","datePublished":"2026-01-28T07:29:41+00:00","dateModified":"2026-01-28T07:37:31+00:00","mainEntityOfPage":{"@id":"https:\/\/seminarsonly.com\/news\/node-exe-npm-error-code-enoent-quick-solution\/"},"wordCount":348,"commentCount":0,"articleSection":["Error Fix"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/seminarsonly.com\/news\/node-exe-npm-error-code-enoent-quick-solution\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/seminarsonly.com\/news\/node-exe-npm-error-code-enoent-quick-solution\/","url":"https:\/\/seminarsonly.com\/news\/node-exe-npm-error-code-enoent-quick-solution\/","name":"node.exe NPM Error Code ENOENT | Quick Solution - Seminarsonly.com","isPartOf":{"@id":"https:\/\/seminarsonly.com\/news\/#website"},"datePublished":"2026-01-28T07:29:41+00:00","dateModified":"2026-01-28T07:37:31+00:00","author":{"@id":"https:\/\/seminarsonly.com\/news\/#\/schema\/person\/75cf706896b7210fb0a84651adc258bd"},"description":"The error code ENOENT stands for \"Error NO ENTry\". In plain English, this means Node.js or npm is trying to open a file or directory that does not exist.","breadcrumb":{"@id":"https:\/\/seminarsonly.com\/news\/node-exe-npm-error-code-enoent-quick-solution\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/seminarsonly.com\/news\/node-exe-npm-error-code-enoent-quick-solution\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/seminarsonly.com\/news\/node-exe-npm-error-code-enoent-quick-solution\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/seminarsonly.com\/news\/"},{"@type":"ListItem","position":2,"name":"node.exe NPM Error Code ENOENT | Quick Solution"}]},{"@type":"WebSite","@id":"https:\/\/seminarsonly.com\/news\/#website","url":"https:\/\/seminarsonly.com\/news\/","name":"Seminarsonly.com","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/seminarsonly.com\/news\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/seminarsonly.com\/news\/#\/schema\/person\/75cf706896b7210fb0a84651adc258bd","name":"Freddy John","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/671d452f5fe9027ab894cbed50911cc764b2c16878222070bf044f21705d4c94?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/671d452f5fe9027ab894cbed50911cc764b2c16878222070bf044f21705d4c94?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/671d452f5fe9027ab894cbed50911cc764b2c16878222070bf044f21705d4c94?s=96&d=mm&r=g","caption":"Freddy John"},"sameAs":["https:\/\/seminarsonly.com\/news"],"url":"https:\/\/seminarsonly.com\/news\/author\/anupvnaick_51wq8y4s\/"}]}},"_links":{"self":[{"href":"https:\/\/seminarsonly.com\/news\/wp-json\/wp\/v2\/posts\/102228","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/seminarsonly.com\/news\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/seminarsonly.com\/news\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/seminarsonly.com\/news\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/seminarsonly.com\/news\/wp-json\/wp\/v2\/comments?post=102228"}],"version-history":[{"count":0,"href":"https:\/\/seminarsonly.com\/news\/wp-json\/wp\/v2\/posts\/102228\/revisions"}],"wp:attachment":[{"href":"https:\/\/seminarsonly.com\/news\/wp-json\/wp\/v2\/media?parent=102228"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/seminarsonly.com\/news\/wp-json\/wp\/v2\/categories?post=102228"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/seminarsonly.com\/news\/wp-json\/wp\/v2\/tags?post=102228"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}