{"id":2640,"date":"2025-08-17T15:20:43","date_gmt":"2025-08-17T19:20:43","guid":{"rendered":"https:\/\/bitpost.com\/news\/?p=2640"},"modified":"2025-08-24T08:35:26","modified_gmt":"2025-08-24T12:35:26","slug":"react-router-is-almost-as-poorly-made-as-react","status":"publish","type":"post","link":"https:\/\/bitpost.com\/news\/2025\/react-router-is-almost-as-poorly-made-as-react\/","title":{"rendered":"Two React and React Router design flaws and solutions"},"content":{"rendered":"\n<p class=\"wp-block-paragraph\">If you&#8217;ve used React for any serious development, you already know that it&#8217;s a few burritos short of a full Mexican fiesta. Both its tree-based prop and state management, and the complete lack of support for routing, have been pretty big gaps that have challenged a generation of developers. Here are my notes to self on finding a better path than what is suggested out of the gate.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">React State Management<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">The need for frontend state is real, unless you made a read-only static webpage, and then you should have used HTML.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Default React state management is basically a cascading tree where the parent doles out bits of state to its children. Why is my client state rigidly baked into the structure of my UI? This naive approach doesn&#8217;t typically hold up for long.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Once I found the solution, it was like fresh oxygen.  Make yourself a true data store, and manage your client state as it needs to be managed, entirely outside whatever you decide is the most intuitive UI to access that state. React now allows this, via useSyncExternalStore.  It is trivial to write state setters and getters, and a clean pub\/sub mechanism to broadcast changes precisely where they are needed.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">React routing<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">React Router seems to have been cobbled together after React was delivered with nothing to offer.  It didn&#8217;t happen in a straight, well-planned linear progression, that&#8217;s for sure.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Once again the default design bakes routing right into the UI elements.  I can&#8217;t navigate unless I use a UI link literally scratched into the page?  Fine if I&#8217;m making static text with hyperlinks.  Not many people&#8217;s use case these days. But unfortunately, react-router was there early to poorly scratch the itch that React left untouched, so everyone adopted it and conformed to its opinionated approach. Approaches, really, as more band-aids were inevitably patched in.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Might as well use it, but I would not use the recommended &lt;Link \/&gt; approach. Instead, navigate programmatically, after doing what needs to be done. Parts:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Maintain state of UI navigation in your datastore (eg, which components are visible)<\/li>\n\n\n\n<li>Use typical Route with parameters<\/li>\n\n\n\n<li>When processing user requests, take action, set state, then programmatically navigate as needed<\/li>\n\n\n\n<li>To handle bookmarks, check params in component constructor, and use navigate if url params do not match datastore state<\/li>\n<\/ul>\n\n\n\n<p class=\"wp-block-paragraph\">Maybe I&#8217;ll add code to this when I&#8217;m not so busy.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>If you&#8217;ve used React for any serious development, you already know that it&#8217;s a few burritos short of a full Mexican fiesta. Both its tree-based prop and state management, and the complete lack of support for routing, have been pretty big gaps that have challenged a generation of developers. Here are my notes to self [&hellip;]<\/p>\n","protected":false},"author":2,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_jetpack_newsletter_access":"","_jetpack_dont_email_post_to_subs":false,"_jetpack_newsletter_tier_id":0,"_jetpack_memberships_contains_paywalled_content":false,"_jetpack_feature_clip_id":0,"_jetpack_memberships_contains_paid_content":false,"footnotes":"","jetpack_publicize_message":"","jetpack_publicize_feature_enabled":true,"jetpack_social_post_already_shared":true,"jetpack_social_options":{"image_generator_settings":{"template":"highway","default_image_id":0,"font":"","enabled":false},"version":2},"jetpack_post_was_ever_published":false},"categories":[204,216],"tags":[],"class_list":["post-2640","post","type-post","status-publish","format-standard","hentry","category-a-better-trader","category-node-js"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 4.9.9 - aioseo.com -->\n\t<meta name=\"description\" content=\"If you&#039;ve used React for any serious development, you already know that it&#039;s a few burritos short of a full Mexican fiesta. Both its tree-based prop and state management, and the complete lack of support for routing, have been pretty big gaps that have challenged a generation of developers. Here are my notes to self\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<meta name=\"author\" content=\"m\"\/>\n\t<meta name=\"keywords\" content=\"a better trader,node-js\" \/>\n\t<link rel=\"canonical\" href=\"https:\/\/bitpost.com\/news\/2025\/react-router-is-almost-as-poorly-made-as-react\/\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 4.9.9\" \/>\n\t\t<meta property=\"og:locale\" content=\"en_US\" \/>\n\t\t<meta property=\"og:site_name\" content=\"bitpost.com\/news | Note to self\" \/>\n\t\t<meta property=\"og:type\" content=\"article\" \/>\n\t\t<meta property=\"og:title\" content=\"Two React and React Router design flaws and solutions | bitpost.com\/news\" \/>\n\t\t<meta property=\"og:description\" content=\"If you&#039;ve used React for any serious development, you already know that it&#039;s a few burritos short of a full Mexican fiesta. Both its tree-based prop and state management, and the complete lack of support for routing, have been pretty big gaps that have challenged a generation of developers. Here are my notes to self\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/bitpost.com\/news\/2025\/react-router-is-almost-as-poorly-made-as-react\/\" \/>\n\t\t<meta property=\"article:published_time\" content=\"2025-08-17T19:20:43+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2025-08-24T12:35:26+00:00\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary\" \/>\n\t\t<meta name=\"twitter:title\" content=\"Two React and React Router design flaws and solutions | bitpost.com\/news\" \/>\n\t\t<meta name=\"twitter:description\" content=\"If you&#039;ve used React for any serious development, you already know that it&#039;s a few burritos short of a full Mexican fiesta. Both its tree-based prop and state management, and the complete lack of support for routing, have been pretty big gaps that have challenged a generation of developers. Here are my notes to self\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/bitpost.com\\\/news\\\/2025\\\/react-router-is-almost-as-poorly-made-as-react\\\/#article\",\"name\":\"Two React and React Router design flaws and solutions | bitpost.com\\\/news\",\"headline\":\"Two React and React Router design flaws and solutions\",\"author\":{\"@id\":\"https:\\\/\\\/bitpost.com\\\/news\\\/author\\\/m\\\/#author\"},\"publisher\":{\"@id\":\"https:\\\/\\\/bitpost.com\\\/news\\\/#person\"},\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/bitpost.com\\\/news\\\/2025\\\/react-router-is-almost-as-poorly-made-as-react\\\/#articleImage\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/884c1dbbf1027f261dbf20652687af7ad0030bfa71ff0ef56540938bdc70be2f?s=96&d=monsterid&r=pg\",\"width\":96,\"height\":96,\"caption\":\"m\"},\"datePublished\":\"2025-08-17T15:20:43-04:00\",\"dateModified\":\"2025-08-24T08:35:26-04:00\",\"inLanguage\":\"en-US\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/bitpost.com\\\/news\\\/2025\\\/react-router-is-almost-as-poorly-made-as-react\\\/#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/bitpost.com\\\/news\\\/2025\\\/react-router-is-almost-as-poorly-made-as-react\\\/#webpage\"},\"articleSection\":\"A better Trader, node-js\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/bitpost.com\\\/news\\\/2025\\\/react-router-is-almost-as-poorly-made-as-react\\\/#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/bitpost.com\\\/news#listItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/bitpost.com\\\/news\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/bitpost.com\\\/news\\\/category\\\/projects\\\/#listItem\",\"name\":\"Projects\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/bitpost.com\\\/news\\\/category\\\/projects\\\/#listItem\",\"position\":2,\"name\":\"Projects\",\"item\":\"https:\\\/\\\/bitpost.com\\\/news\\\/category\\\/projects\\\/\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/bitpost.com\\\/news\\\/category\\\/projects\\\/a-better-trader\\\/#listItem\",\"name\":\"A better Trader\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/bitpost.com\\\/news#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/bitpost.com\\\/news\\\/category\\\/projects\\\/a-better-trader\\\/#listItem\",\"position\":3,\"name\":\"A better Trader\",\"item\":\"https:\\\/\\\/bitpost.com\\\/news\\\/category\\\/projects\\\/a-better-trader\\\/\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/bitpost.com\\\/news\\\/2025\\\/react-router-is-almost-as-poorly-made-as-react\\\/#listItem\",\"name\":\"Two React and React Router design flaws and solutions\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/bitpost.com\\\/news\\\/category\\\/projects\\\/#listItem\",\"name\":\"Projects\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/bitpost.com\\\/news\\\/2025\\\/react-router-is-almost-as-poorly-made-as-react\\\/#listItem\",\"position\":4,\"name\":\"Two React and React Router design flaws and solutions\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/bitpost.com\\\/news\\\/category\\\/projects\\\/a-better-trader\\\/#listItem\",\"name\":\"A better Trader\"}}]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/bitpost.com\\\/news\\\/#person\",\"name\":\"m\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/bitpost.com\\\/news\\\/2025\\\/react-router-is-almost-as-poorly-made-as-react\\\/#personImage\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/884c1dbbf1027f261dbf20652687af7ad0030bfa71ff0ef56540938bdc70be2f?s=96&d=monsterid&r=pg\",\"width\":96,\"height\":96,\"caption\":\"m\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/bitpost.com\\\/news\\\/author\\\/m\\\/#author\",\"url\":\"https:\\\/\\\/bitpost.com\\\/news\\\/author\\\/m\\\/\",\"name\":\"m\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/bitpost.com\\\/news\\\/2025\\\/react-router-is-almost-as-poorly-made-as-react\\\/#authorImage\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/884c1dbbf1027f261dbf20652687af7ad0030bfa71ff0ef56540938bdc70be2f?s=96&d=monsterid&r=pg\",\"width\":96,\"height\":96,\"caption\":\"m\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/bitpost.com\\\/news\\\/2025\\\/react-router-is-almost-as-poorly-made-as-react\\\/#webpage\",\"url\":\"https:\\\/\\\/bitpost.com\\\/news\\\/2025\\\/react-router-is-almost-as-poorly-made-as-react\\\/\",\"name\":\"Two React and React Router design flaws and solutions | bitpost.com\\\/news\",\"description\":\"If you've used React for any serious development, you already know that it's a few burritos short of a full Mexican fiesta. Both its tree-based prop and state management, and the complete lack of support for routing, have been pretty big gaps that have challenged a generation of developers. Here are my notes to self\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/bitpost.com\\\/news\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/bitpost.com\\\/news\\\/2025\\\/react-router-is-almost-as-poorly-made-as-react\\\/#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/bitpost.com\\\/news\\\/author\\\/m\\\/#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/bitpost.com\\\/news\\\/author\\\/m\\\/#author\"},\"datePublished\":\"2025-08-17T15:20:43-04:00\",\"dateModified\":\"2025-08-24T08:35:26-04:00\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/bitpost.com\\\/news\\\/#website\",\"url\":\"https:\\\/\\\/bitpost.com\\\/news\\\/\",\"name\":\"bitpost.com\\\/news\",\"description\":\"Note to self\",\"inLanguage\":\"en-US\",\"publisher\":{\"@id\":\"https:\\\/\\\/bitpost.com\\\/news\\\/#person\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO -->\n\n","aioseo_head_json":{"title":"Two React and React Router design flaws and solutions | bitpost.com\/news","description":"If you've used React for any serious development, you already know that it's a few burritos short of a full Mexican fiesta. Both its tree-based prop and state management, and the complete lack of support for routing, have been pretty big gaps that have challenged a generation of developers. Here are my notes to self","canonical_url":"https:\/\/bitpost.com\/news\/2025\/react-router-is-almost-as-poorly-made-as-react\/","robots":"max-image-preview:large","keywords":"a better trader,node-js","webmasterTools":{"miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/bitpost.com\/news\/2025\/react-router-is-almost-as-poorly-made-as-react\/#article","name":"Two React and React Router design flaws and solutions | bitpost.com\/news","headline":"Two React and React Router design flaws and solutions","author":{"@id":"https:\/\/bitpost.com\/news\/author\/m\/#author"},"publisher":{"@id":"https:\/\/bitpost.com\/news\/#person"},"image":{"@type":"ImageObject","@id":"https:\/\/bitpost.com\/news\/2025\/react-router-is-almost-as-poorly-made-as-react\/#articleImage","url":"https:\/\/secure.gravatar.com\/avatar\/884c1dbbf1027f261dbf20652687af7ad0030bfa71ff0ef56540938bdc70be2f?s=96&d=monsterid&r=pg","width":96,"height":96,"caption":"m"},"datePublished":"2025-08-17T15:20:43-04:00","dateModified":"2025-08-24T08:35:26-04:00","inLanguage":"en-US","mainEntityOfPage":{"@id":"https:\/\/bitpost.com\/news\/2025\/react-router-is-almost-as-poorly-made-as-react\/#webpage"},"isPartOf":{"@id":"https:\/\/bitpost.com\/news\/2025\/react-router-is-almost-as-poorly-made-as-react\/#webpage"},"articleSection":"A better Trader, node-js"},{"@type":"BreadcrumbList","@id":"https:\/\/bitpost.com\/news\/2025\/react-router-is-almost-as-poorly-made-as-react\/#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/bitpost.com\/news#listItem","position":1,"name":"Home","item":"https:\/\/bitpost.com\/news","nextItem":{"@type":"ListItem","@id":"https:\/\/bitpost.com\/news\/category\/projects\/#listItem","name":"Projects"}},{"@type":"ListItem","@id":"https:\/\/bitpost.com\/news\/category\/projects\/#listItem","position":2,"name":"Projects","item":"https:\/\/bitpost.com\/news\/category\/projects\/","nextItem":{"@type":"ListItem","@id":"https:\/\/bitpost.com\/news\/category\/projects\/a-better-trader\/#listItem","name":"A better Trader"},"previousItem":{"@type":"ListItem","@id":"https:\/\/bitpost.com\/news#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/bitpost.com\/news\/category\/projects\/a-better-trader\/#listItem","position":3,"name":"A better Trader","item":"https:\/\/bitpost.com\/news\/category\/projects\/a-better-trader\/","nextItem":{"@type":"ListItem","@id":"https:\/\/bitpost.com\/news\/2025\/react-router-is-almost-as-poorly-made-as-react\/#listItem","name":"Two React and React Router design flaws and solutions"},"previousItem":{"@type":"ListItem","@id":"https:\/\/bitpost.com\/news\/category\/projects\/#listItem","name":"Projects"}},{"@type":"ListItem","@id":"https:\/\/bitpost.com\/news\/2025\/react-router-is-almost-as-poorly-made-as-react\/#listItem","position":4,"name":"Two React and React Router design flaws and solutions","previousItem":{"@type":"ListItem","@id":"https:\/\/bitpost.com\/news\/category\/projects\/a-better-trader\/#listItem","name":"A better Trader"}}]},{"@type":"Person","@id":"https:\/\/bitpost.com\/news\/#person","name":"m","image":{"@type":"ImageObject","@id":"https:\/\/bitpost.com\/news\/2025\/react-router-is-almost-as-poorly-made-as-react\/#personImage","url":"https:\/\/secure.gravatar.com\/avatar\/884c1dbbf1027f261dbf20652687af7ad0030bfa71ff0ef56540938bdc70be2f?s=96&d=monsterid&r=pg","width":96,"height":96,"caption":"m"}},{"@type":"Person","@id":"https:\/\/bitpost.com\/news\/author\/m\/#author","url":"https:\/\/bitpost.com\/news\/author\/m\/","name":"m","image":{"@type":"ImageObject","@id":"https:\/\/bitpost.com\/news\/2025\/react-router-is-almost-as-poorly-made-as-react\/#authorImage","url":"https:\/\/secure.gravatar.com\/avatar\/884c1dbbf1027f261dbf20652687af7ad0030bfa71ff0ef56540938bdc70be2f?s=96&d=monsterid&r=pg","width":96,"height":96,"caption":"m"}},{"@type":"WebPage","@id":"https:\/\/bitpost.com\/news\/2025\/react-router-is-almost-as-poorly-made-as-react\/#webpage","url":"https:\/\/bitpost.com\/news\/2025\/react-router-is-almost-as-poorly-made-as-react\/","name":"Two React and React Router design flaws and solutions | bitpost.com\/news","description":"If you've used React for any serious development, you already know that it's a few burritos short of a full Mexican fiesta. Both its tree-based prop and state management, and the complete lack of support for routing, have been pretty big gaps that have challenged a generation of developers. Here are my notes to self","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/bitpost.com\/news\/#website"},"breadcrumb":{"@id":"https:\/\/bitpost.com\/news\/2025\/react-router-is-almost-as-poorly-made-as-react\/#breadcrumblist"},"author":{"@id":"https:\/\/bitpost.com\/news\/author\/m\/#author"},"creator":{"@id":"https:\/\/bitpost.com\/news\/author\/m\/#author"},"datePublished":"2025-08-17T15:20:43-04:00","dateModified":"2025-08-24T08:35:26-04:00"},{"@type":"WebSite","@id":"https:\/\/bitpost.com\/news\/#website","url":"https:\/\/bitpost.com\/news\/","name":"bitpost.com\/news","description":"Note to self","inLanguage":"en-US","publisher":{"@id":"https:\/\/bitpost.com\/news\/#person"}}]},"og:locale":"en_US","og:site_name":"bitpost.com\/news | Note to self","og:type":"article","og:title":"Two React and React Router design flaws and solutions | bitpost.com\/news","og:description":"If you've used React for any serious development, you already know that it's a few burritos short of a full Mexican fiesta. Both its tree-based prop and state management, and the complete lack of support for routing, have been pretty big gaps that have challenged a generation of developers. Here are my notes to self","og:url":"https:\/\/bitpost.com\/news\/2025\/react-router-is-almost-as-poorly-made-as-react\/","article:published_time":"2025-08-17T19:20:43+00:00","article:modified_time":"2025-08-24T12:35:26+00:00","twitter:card":"summary","twitter:title":"Two React and React Router design flaws and solutions | bitpost.com\/news","twitter:description":"If you've used React for any serious development, you already know that it's a few burritos short of a full Mexican fiesta. Both its tree-based prop and state management, and the complete lack of support for routing, have been pretty big gaps that have challenged a generation of developers. Here are my notes to self"},"aioseo_meta_data":{"post_id":"2640","title":null,"description":null,"keywords":null,"keyphrases":{"focus":{"keyphrase":"","score":0,"analysis":{"keyphraseInTitle":{"score":0,"maxScore":9,"error":1}}},"additional":[]},"primary_term":null,"canonical_url":null,"og_title":null,"og_description":null,"og_object_type":"default","og_image_type":"default","og_image_url":null,"og_image_width":null,"og_image_height":null,"og_image_custom_url":null,"og_image_custom_fields":null,"og_video":"","og_custom_url":null,"og_article_section":null,"og_article_tags":null,"twitter_use_og":false,"twitter_card":"default","twitter_image_type":"default","twitter_image_url":null,"twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_title":null,"twitter_description":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":[],"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"Article","isEnabled":true},"graphs":[]},"schema_type":"default","schema_type_options":null,"pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":"-1","robots_max_videopreview":"-1","robots_max_imagepreview":"large","priority":null,"frequency":"default","local_seo":null,"breadcrumb_settings":null,"limit_modified_date":false,"ai":{"faqs":[],"keyPoints":[],"titles":[],"descriptions":[],"socialPosts":{"email":[],"linkedin":[],"twitter":[],"facebook":[],"instagram":[]}},"created":"2025-08-17 18:27:26","updated":"2025-08-24 12:40:22","seo_analyzer_scan_date":null},"jetpack_publicize_connections":[],"jetpack_featured_media_url":"","jetpack_sharing_enabled":true,"jetpack_shortlink":"https:\/\/wp.me\/p9M11L-GA","jetpack_likes_enabled":true,"_links":{"self":[{"href":"https:\/\/bitpost.com\/news\/wp-json\/wp\/v2\/posts\/2640","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/bitpost.com\/news\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/bitpost.com\/news\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/bitpost.com\/news\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/bitpost.com\/news\/wp-json\/wp\/v2\/comments?post=2640"}],"version-history":[{"count":9,"href":"https:\/\/bitpost.com\/news\/wp-json\/wp\/v2\/posts\/2640\/revisions"}],"predecessor-version":[{"id":2670,"href":"https:\/\/bitpost.com\/news\/wp-json\/wp\/v2\/posts\/2640\/revisions\/2670"}],"wp:attachment":[{"href":"https:\/\/bitpost.com\/news\/wp-json\/wp\/v2\/media?parent=2640"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/bitpost.com\/news\/wp-json\/wp\/v2\/categories?post=2640"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/bitpost.com\/news\/wp-json\/wp\/v2\/tags?post=2640"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}