{"id":493,"date":"2023-12-13T10:00:00","date_gmt":"2023-12-13T10:00:00","guid":{"rendered":"https:\/\/jacar.es\/cloudflare-workers-edge\/"},"modified":"2023-12-13T10:00:00","modified_gmt":"2023-12-13T10:00:00","slug":"cloudflare-workers-edge","status":"publish","type":"post","link":"https:\/\/jacar.es\/en\/cloudflare-workers-edge\/","title":{"rendered":"Cloudflare Workers: Edge Compute Without Containers"},"content":{"rendered":"<p><a href=\"https:\/\/workers.cloudflare.com\/\"><strong>Cloudflare Workers<\/strong><\/a> is the most mature edge serverless platform in 2023. It runs your JavaScript or WebAssembly code in <strong>300+ global datacenters<\/strong>, without your having to manage regions, containers, or perceptible cold starts. The architecture differs fundamentally from Lambda and similar \u2014 and that difference defines where it shines and where it falls short.<\/p>\n<h2 id=\"the-architecture-v8-isolates-instead-of-containers\">The Architecture: V8 Isolates Instead of Containers<\/h2>\n<p>AWS Lambda and similar launch a container (or microVM like Firecracker) for each function. They have measurable <strong>cold starts<\/strong> \u2014 from 100ms to several seconds.<\/p>\n<p>Cloudflare Workers use <strong>V8 isolates<\/strong>, the same technology isolating tabs in Chrome. Each Worker runs in an isolate inside a shared Node.js process. Consequences:<\/p>\n<ul>\n<li><strong>0-5 ms cold start<\/strong>. Creating an isolate is much cheaper than a container.<\/li>\n<li><strong>Very low memory footprint<\/strong>. Hundreds of Workers can coexist in the same process.<\/li>\n<li><strong>Very low cost per invocation<\/strong>. Cloudflare\u2019s free tier is generous precisely because each invocation costs very little in infrastructure.<\/li>\n<li><strong>Limitations<\/strong>: you can\u2019t use OS APIs, native threads, or npm modules depending on native bindings.<\/li>\n<\/ul>\n<p>For cases where the model fits, this is transformative. For cases where it doesn\u2019t, it\u2019s blocking.<\/p>\n<h2 id=\"what-you-can-run\">What You Can Run<\/h2>\n<p>Workers accepts:<\/p>\n<ul>\n<li><strong>Modern JavaScript ES Modules<\/strong>.<\/li>\n<li><strong>TypeScript<\/strong> (compiled to JS before deploy).<\/li>\n<li><strong>WebAssembly<\/strong>: Rust, Go (TinyGo), C, AssemblyScript compiled to Wasm. Ideal for CPU-intensive logic where JS would be slow.<\/li>\n<\/ul>\n<p>What it <strong>does not<\/strong> accept:<\/p>\n<ul>\n<li>Node.js modules depending on native C bindings (sharp, native bcrypt, etc.).<\/li>\n<li>Local filesystem access.<\/li>\n<li>Process spawning.<\/li>\n<li>Listening on arbitrary TCP sockets (except permitted outbound).<\/li>\n<\/ul>\n<h2 id=\"storage-kv-durable-objects-r2-d1\">Storage: KV, Durable Objects, R2, D1<\/h2>\n<p>Workers isn\u2019t just compute \u2014 Cloudflare has built an edge storage stack:<\/p>\n<h3 id=\"workers-kv\">Workers KV<\/h3>\n<p>Globally distributed key-value store, eventually consistent.<\/p>\n<ul>\n<li><strong>Reads<\/strong>: very fast and cached in each datacenter.<\/li>\n<li><strong>Writes<\/strong>: propagation to all nodes in seconds to a minute.<\/li>\n<li><strong>Use case<\/strong>: configuration, feature flags, response cache, frequent reads.<\/li>\n<li><strong>Limitations<\/strong>: write latency, not suitable for transactional data.<\/li>\n<\/ul>\n<h3 id=\"durable-objects\">Durable Objects<\/h3>\n<p>Objects with <strong>consistent state and globally unique identity<\/strong>. Each object lives in one datacenter (often the closest to first use) and processes all requests for that instance sequentially.<\/p>\n<ul>\n<li><strong>Use case<\/strong>: user sessions, chat rooms, precise counters, distributed coordination.<\/li>\n<li><strong>Mental model<\/strong>: an actor with state at a fixed location but globally accessible.<\/li>\n<\/ul>\n<h3 id=\"r2\">R2<\/h3>\n<p>S3-compatible object storage, without egress fees.<\/p>\n<ul>\n<li><strong>Use case<\/strong>: assets, videos, backups, large content.<\/li>\n<li><strong>Key advantage<\/strong>: price without penalty for serving data to the Internet (vs S3 with expensive egress).<\/li>\n<\/ul>\n<h3 id=\"d1\">D1<\/h3>\n<p>Distributed SQLite database (beta in 2023, GA soon).<\/p>\n<ul>\n<li><strong>Use case<\/strong>: relational data with SQL queries for edge apps.<\/li>\n<li><strong>Model<\/strong>: read from local replicas, writes go to a primary region.<\/li>\n<\/ul>\n<p>This combination covers most edge-application needs without having to call a traditional origin.<\/p>\n<h2 id=\"cases-where-workers-shines\">Cases Where Workers Shines<\/h2>\n<p>Where the architecture fits perfectly:<\/p>\n<ul>\n<li><strong>Edge logic on frontend<\/strong>. Smart routing, A\/B testing, geo-based redirects, bot detection.<\/li>\n<li><strong>Custom API gateway<\/strong>. Validate tokens, rate limit, transform requests before forwarding to origin.<\/li>\n<li><strong>Simple APIs without traditional backend<\/strong>. Light CRUD with KV or D1 without deploying servers.<\/li>\n<li><strong>Streaming and response processing<\/strong>. Pass the origin response through Workers to apply transformations.<\/li>\n<li><strong>High-throughput webhooks<\/strong>. Receive many requests per second at minimal cost.<\/li>\n<li><strong>Smart proxies<\/strong>. Workers in front of a traditional origin, adding cache, auth, telemetry.<\/li>\n<\/ul>\n<h2 id=\"cases-where-its-not-the-tool\">Cases Where It\u2019s Not the Tool<\/h2>\n<p>Honesty: Workers doesn\u2019t fit everything:<\/p>\n<ul>\n<li><strong>APIs with heavy npm dependencies<\/strong>. Workers doesn\u2019t support large parts of the native Node ecosystem.<\/li>\n<li><strong>Long CPU-intensive workloads<\/strong>. There are CPU-time limits per request (ms-seconds).<\/li>\n<li><strong>Long-running tasks<\/strong>. Workers aren\u2019t containers \u2014 designed to respond fast.<\/li>\n<li><strong>Strong transactional data<\/strong>. KV is eventually consistent; D1 is maturing; ACID guarantees are weaker than a traditional Postgres.<\/li>\n<li><strong>Complex stateful workloads<\/strong>. Durable Objects help but don\u2019t solve everything.<\/li>\n<\/ul>\n<h2 id=\"comparison-with-lambda-and-similar\">Comparison With Lambda and Similar<\/h2>\n<table>\n<colgroup>\n<col style=\"width: 19%\" \/>\n<col style=\"width: 19%\" \/>\n<col style=\"width: 26%\" \/>\n<col style=\"width: 34%\" \/>\n<\/colgroup>\n<thead>\n<tr class=\"header\">\n<th>Aspect<\/th>\n<th>Workers<\/th>\n<th>AWS Lambda<\/th>\n<th>Vercel\/Netlify<\/th>\n<\/tr>\n<\/thead>\n<tbody>\n<tr class=\"odd\">\n<td>Cold start<\/td>\n<td>~0-5 ms<\/td>\n<td>100ms-2s<\/td>\n<td>Similar to Lambda<\/td>\n<\/tr>\n<tr class=\"even\">\n<td>Global distribution<\/td>\n<td>300+ datacenters<\/td>\n<td>Per AWS region<\/td>\n<td>Edge in some cases<\/td>\n<\/tr>\n<tr class=\"odd\">\n<td>Languages<\/td>\n<td>JS\/TS\/Wasm<\/td>\n<td>Almost all<\/td>\n<td>Mostly JS\/TS<\/td>\n<\/tr>\n<tr class=\"even\">\n<td>Edge storage built-in<\/td>\n<td>Yes<\/td>\n<td>No (regional DynamoDB)<\/td>\n<td>Limited<\/td>\n<\/tr>\n<tr class=\"odd\">\n<td>Cost per request<\/td>\n<td>Very low<\/td>\n<td>Low, scales with use<\/td>\n<td>Variable<\/td>\n<\/tr>\n<tr class=\"even\">\n<td>Full Node.js support<\/td>\n<td>Limited<\/td>\n<td>Complete<\/td>\n<td>Complete<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<p>For JavaScript edge logic, Workers is the most solid option. For complex workloads with broad dependencies, Lambda remains more flexible.<\/p>\n<h2 id=\"development-workflow\">Development Workflow<\/h2>\n<p>Cloudflare has invested in developer experience:<\/p>\n<ul>\n<li><strong><code>wrangler<\/code> CLI<\/strong>. Create, develop, and deploy Workers from local.<\/li>\n<li><strong><code>wrangler dev<\/code><\/strong>. Local development with hot reload, simulates KV\/Durable Objects.<\/li>\n<li><strong>Deploy in seconds<\/strong>. No complex build, deploy is practically instant.<\/li>\n<li><strong>Built-in logging<\/strong>. <code>wrangler tail<\/code> shows live logs.<\/li>\n<\/ul>\n<p>The iteration loop is very fast compared to deploying Lambda + API Gateway + IAM + CloudFront.<\/p>\n<h2 id=\"conclusion\">Conclusion<\/h2>\n<p>Cloudflare Workers has consolidated edge serverless as a mature category in 2023. For cases fitting the model (JavaScript\/Wasm, short logic, edge storage), it\u2019s probably the best available option \u2014 faster, cheaper, more distributed than alternatives. For cases that don\u2019t fit (heavy workloads, native Node dependencies), don\u2019t force it \u2014 use Lambda or a traditional server. Knowing both options expands your repertoire.<\/p>\n<p>Follow us on jacar.es for more on edge computing, serverless, and modern distributed architectures.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Cloudflare Workers run JavaScript\/Wasm code in hundreds of cities without managing servers. Where it shines and where it falls short.<\/p>\n","protected":false},"author":1,"featured_media":514,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[19],"tags":[286,269,288,142,287,140],"class_list":["post-493","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-tecnologia","tag-cloudflare-workers","tag-edge-computing","tag-kv","tag-serverless","tag-v8","tag-wasm"],"translation":{"provider":"WPGlobus","version":"3.0.2","language":"en","enabled_languages":["es","en"],"languages":{"es":{"title":true,"content":true,"excerpt":true},"en":{"title":true,"content":true,"excerpt":true}}},"gutentor_comment":0,"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Cloudflare Workers: Edge Compute Without Containers - Jacar<\/title>\n<meta name=\"description\" content=\"Cloudflare Workers explained: V8 isolates architecture, real use cases, comparison with Lambda, and edge model limitations.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/jacar.es\/cloudflare-workers-edge\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Cloudflare Workers: Edge Compute Without Containers - Jacar\" \/>\n<meta property=\"og:description\" content=\"Cloudflare Workers explained: V8 isolates architecture, real use cases, comparison with Lambda, and edge model limitations.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/jacar.es\/cloudflare-workers-edge\/\" \/>\n<meta property=\"og:site_name\" content=\"Jacar\" \/>\n<meta property=\"article:published_time\" content=\"2023-12-13T10:00:00+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/jcs-wp-jacar-es.fsn1.your-objectstorage.com\/wp-content\/uploads\/2020\/09\/favicon.png\" \/>\n\t<meta property=\"og:image:width\" content=\"252\" \/>\n\t<meta property=\"og:image:height\" content=\"229\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"javi\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"javi\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"9 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/jacar.es\\\/cloudflare-workers-edge\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/jacar.es\\\/cloudflare-workers-edge\\\/\"},\"author\":{\"name\":\"javi\",\"@id\":\"https:\\\/\\\/jacar.es\\\/#\\\/schema\\\/person\\\/54a7f7b4224b38fafc9866eb3e614208\"},\"headline\":\"Cloudflare Workers: Edge Compute Without Containers\",\"datePublished\":\"2023-12-13T10:00:00+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/jacar.es\\\/cloudflare-workers-edge\\\/\"},\"wordCount\":1751,\"publisher\":{\"@id\":\"https:\\\/\\\/jacar.es\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/jacar.es\\\/cloudflare-workers-edge\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/jcs-wp-jacar-es.fsn1.your-objectstorage.com\\\/wp-content\\\/uploads\\\/2023\\\/12\\\/20000530\\\/jwp-1325074-9387.jpg\",\"keywords\":[\"cloudflare workers\",\"edge computing\",\"kv\",\"serverless\",\"v8\",\"wasm\"],\"articleSection\":[\"Tecnolog\u00eda\"],\"inLanguage\":\"en-US\"},{\"@type\":[\"WebPage\",\"ItemPage\"],\"@id\":\"https:\\\/\\\/jacar.es\\\/cloudflare-workers-edge\\\/\",\"url\":\"https:\\\/\\\/jacar.es\\\/cloudflare-workers-edge\\\/\",\"name\":\"Cloudflare Workers: Edge Compute Without Containers - Jacar\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/jacar.es\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/jacar.es\\\/cloudflare-workers-edge\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/jacar.es\\\/cloudflare-workers-edge\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/jcs-wp-jacar-es.fsn1.your-objectstorage.com\\\/wp-content\\\/uploads\\\/2023\\\/12\\\/20000530\\\/jwp-1325074-9387.jpg\",\"datePublished\":\"2023-12-13T10:00:00+00:00\",\"description\":\"Cloudflare Workers explained: V8 isolates architecture, real use cases, comparison with Lambda, and edge model limitations.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/jacar.es\\\/cloudflare-workers-edge\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/jacar.es\\\/cloudflare-workers-edge\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/jacar.es\\\/cloudflare-workers-edge\\\/#primaryimage\",\"url\":\"https:\\\/\\\/jcs-wp-jacar-es.fsn1.your-objectstorage.com\\\/wp-content\\\/uploads\\\/2023\\\/12\\\/20000530\\\/jwp-1325074-9387.jpg\",\"contentUrl\":\"https:\\\/\\\/jcs-wp-jacar-es.fsn1.your-objectstorage.com\\\/wp-content\\\/uploads\\\/2023\\\/12\\\/20000530\\\/jwp-1325074-9387.jpg\",\"width\":1200,\"height\":800,\"caption\":\"Vista global del planeta con redes de fibra \u00f3ptica conectando regiones\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/jacar.es\\\/cloudflare-workers-edge\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Portada\",\"item\":\"https:\\\/\\\/jacar.es\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Cloudflare Workers: computo en el edge sin contenedores\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/jacar.es\\\/#website\",\"url\":\"https:\\\/\\\/jacar.es\\\/\",\"name\":\"Jacar\",\"description\":\"Passion for Technology\",\"publisher\":{\"@id\":\"https:\\\/\\\/jacar.es\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/jacar.es\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/jacar.es\\\/#organization\",\"name\":\"Jacar\",\"url\":\"https:\\\/\\\/jacar.es\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/jacar.es\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/jacar.es\\\/wp-content\\\/uploads\\\/2020\\\/09\\\/favicon.png\",\"contentUrl\":\"https:\\\/\\\/jacar.es\\\/wp-content\\\/uploads\\\/2020\\\/09\\\/favicon.png\",\"width\":252,\"height\":229,\"caption\":\"Jacar\"},\"image\":{\"@id\":\"https:\\\/\\\/jacar.es\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.linkedin.com\\\/in\\\/javiercanetearroyo\\\/\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/jacar.es\\\/#\\\/schema\\\/person\\\/54a7f7b4224b38fafc9866eb3e614208\",\"name\":\"javi\",\"sameAs\":[\"https:\\\/\\\/jacar.es\"],\"url\":\"https:\\\/\\\/jacar.es\\\/en\\\/author\\\/javi\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Cloudflare Workers: Edge Compute Without Containers - Jacar","description":"Cloudflare Workers explained: V8 isolates architecture, real use cases, comparison with Lambda, and edge model limitations.","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:\/\/jacar.es\/cloudflare-workers-edge\/","og_locale":"en_US","og_type":"article","og_title":"Cloudflare Workers: Edge Compute Without Containers - Jacar","og_description":"Cloudflare Workers explained: V8 isolates architecture, real use cases, comparison with Lambda, and edge model limitations.","og_url":"https:\/\/jacar.es\/cloudflare-workers-edge\/","og_site_name":"Jacar","article_published_time":"2023-12-13T10:00:00+00:00","og_image":[{"width":252,"height":229,"url":"https:\/\/jcs-wp-jacar-es.fsn1.your-objectstorage.com\/wp-content\/uploads\/2020\/09\/favicon.png","type":"image\/png"}],"author":"javi","twitter_card":"summary_large_image","twitter_misc":{"Written by":"javi","Est. reading time":"9 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/jacar.es\/cloudflare-workers-edge\/#article","isPartOf":{"@id":"https:\/\/jacar.es\/cloudflare-workers-edge\/"},"author":{"name":"javi","@id":"https:\/\/jacar.es\/#\/schema\/person\/54a7f7b4224b38fafc9866eb3e614208"},"headline":"Cloudflare Workers: Edge Compute Without Containers","datePublished":"2023-12-13T10:00:00+00:00","mainEntityOfPage":{"@id":"https:\/\/jacar.es\/cloudflare-workers-edge\/"},"wordCount":1751,"publisher":{"@id":"https:\/\/jacar.es\/#organization"},"image":{"@id":"https:\/\/jacar.es\/cloudflare-workers-edge\/#primaryimage"},"thumbnailUrl":"https:\/\/jcs-wp-jacar-es.fsn1.your-objectstorage.com\/wp-content\/uploads\/2023\/12\/20000530\/jwp-1325074-9387.jpg","keywords":["cloudflare workers","edge computing","kv","serverless","v8","wasm"],"articleSection":["Tecnolog\u00eda"],"inLanguage":"en-US"},{"@type":["WebPage","ItemPage"],"@id":"https:\/\/jacar.es\/cloudflare-workers-edge\/","url":"https:\/\/jacar.es\/cloudflare-workers-edge\/","name":"Cloudflare Workers: Edge Compute Without Containers - Jacar","isPartOf":{"@id":"https:\/\/jacar.es\/#website"},"primaryImageOfPage":{"@id":"https:\/\/jacar.es\/cloudflare-workers-edge\/#primaryimage"},"image":{"@id":"https:\/\/jacar.es\/cloudflare-workers-edge\/#primaryimage"},"thumbnailUrl":"https:\/\/jcs-wp-jacar-es.fsn1.your-objectstorage.com\/wp-content\/uploads\/2023\/12\/20000530\/jwp-1325074-9387.jpg","datePublished":"2023-12-13T10:00:00+00:00","description":"Cloudflare Workers explained: V8 isolates architecture, real use cases, comparison with Lambda, and edge model limitations.","breadcrumb":{"@id":"https:\/\/jacar.es\/cloudflare-workers-edge\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/jacar.es\/cloudflare-workers-edge\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/jacar.es\/cloudflare-workers-edge\/#primaryimage","url":"https:\/\/jcs-wp-jacar-es.fsn1.your-objectstorage.com\/wp-content\/uploads\/2023\/12\/20000530\/jwp-1325074-9387.jpg","contentUrl":"https:\/\/jcs-wp-jacar-es.fsn1.your-objectstorage.com\/wp-content\/uploads\/2023\/12\/20000530\/jwp-1325074-9387.jpg","width":1200,"height":800,"caption":"Vista global del planeta con redes de fibra \u00f3ptica conectando regiones"},{"@type":"BreadcrumbList","@id":"https:\/\/jacar.es\/cloudflare-workers-edge\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Portada","item":"https:\/\/jacar.es\/"},{"@type":"ListItem","position":2,"name":"Cloudflare Workers: computo en el edge sin contenedores"}]},{"@type":"WebSite","@id":"https:\/\/jacar.es\/#website","url":"https:\/\/jacar.es\/","name":"Jacar","description":"Passion for Technology","publisher":{"@id":"https:\/\/jacar.es\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/jacar.es\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/jacar.es\/#organization","name":"Jacar","url":"https:\/\/jacar.es\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/jacar.es\/#\/schema\/logo\/image\/","url":"https:\/\/jacar.es\/wp-content\/uploads\/2020\/09\/favicon.png","contentUrl":"https:\/\/jacar.es\/wp-content\/uploads\/2020\/09\/favicon.png","width":252,"height":229,"caption":"Jacar"},"image":{"@id":"https:\/\/jacar.es\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.linkedin.com\/in\/javiercanetearroyo\/"]},{"@type":"Person","@id":"https:\/\/jacar.es\/#\/schema\/person\/54a7f7b4224b38fafc9866eb3e614208","name":"javi","sameAs":["https:\/\/jacar.es"],"url":"https:\/\/jacar.es\/en\/author\/javi\/"}]}},"_links":{"self":[{"href":"https:\/\/jacar.es\/en\/wp-json\/wp\/v2\/posts\/493","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/jacar.es\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/jacar.es\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/jacar.es\/en\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/jacar.es\/en\/wp-json\/wp\/v2\/comments?post=493"}],"version-history":[{"count":0,"href":"https:\/\/jacar.es\/en\/wp-json\/wp\/v2\/posts\/493\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/jacar.es\/en\/wp-json\/wp\/v2\/media\/514"}],"wp:attachment":[{"href":"https:\/\/jacar.es\/en\/wp-json\/wp\/v2\/media?parent=493"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/jacar.es\/en\/wp-json\/wp\/v2\/categories?post=493"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/jacar.es\/en\/wp-json\/wp\/v2\/tags?post=493"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}