<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>Forem: DeBros</title>
    <description>The latest articles on Forem by DeBros (@debros).</description>
    <link>https://forem.com/debros</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3511337%2F7609ba8e-95a6-4cea-bae8-284cd3acafbc.png</url>
      <title>Forem: DeBros</title>
      <link>https://forem.com/debros</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://forem.com/feed/debros"/>
    <language>en</language>
    <item>
      <title>We Build our own decentralized DNS for AnChat — Here’s Why</title>
      <dc:creator>DeBros</dc:creator>
      <pubDate>Wed, 11 Mar 2026 05:47:24 +0000</pubDate>
      <link>https://forem.com/debros/we-build-our-own-decentralized-dns-for-anchat-heres-why-3cjj</link>
      <guid>https://forem.com/debros/we-build-our-own-decentralized-dns-for-anchat-heres-why-3cjj</guid>
      <description>&lt;p&gt;Most “decentralized” projects still trust Cloudflare to resolve their domains. We did too — until we realized that defeats the entire point.&lt;/p&gt;

&lt;p&gt;This is the story of how DeBros moved away from Cloudflare and built a fully self-hosted DNS system into the Orama Network — and how AnChat’s backend infrastructure already runs on it.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Problem With Cloudflare
&lt;/h2&gt;

&lt;p&gt;Cloudflare is great. It’s fast, reliable, and free for most use cases. But it’s also a single company sitting between your users and your infrastructure.&lt;/p&gt;

&lt;p&gt;When you put your domain behind Cloudflare, you’re trusting them to:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Resolve your domain correctly&lt;/li&gt;
&lt;li&gt;Not censor your content&lt;/li&gt;
&lt;li&gt;Not go down (they have — multiple times)&lt;/li&gt;
&lt;li&gt;Not comply with a takedown request that kills your project overnight&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fm9xzevjgtfilj7lr3p5r.jpeg" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fm9xzevjgtfilj7lr3p5r.jpeg" alt=" " width="800" height="597"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;For a privacy-first messaging app, this is a non-starter. If one company can flip a switch and make your app unreachable, you’re not decentralized. You’re just using a different centralized provider.&lt;/p&gt;

&lt;p&gt;We needed DNS that works like the rest of Orama Network: distributed, self-healing, and under nobody’s control but ours.&lt;/p&gt;

&lt;h2&gt;
  
  
  What We Built
&lt;/h2&gt;

&lt;p&gt;Every Orama Network node can run as an authoritative nameserver. When you install a node with the — nameserver flag, it spins up CoreDNS — the same DNS server that powers Kubernetes clusters worldwide — backed by our distributed SQL database (RQLite).&lt;/p&gt;

&lt;p&gt;Here’s the architecture:&lt;/p&gt;

&lt;p&gt;CoreDNS handles the DNS protocol — receiving queries, responding with records, caching responses.&lt;/p&gt;

&lt;p&gt;RQLite stores all DNS records in a distributed SQL database replicated across every node via Raft consensus. When you add a DNS record on one node, every other node sees it within seconds.&lt;/p&gt;

&lt;p&gt;Self-healing heartbeats ensure the system stays accurate. Every 30 seconds, each node:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Confirms its own DNS records exist (and recreates them if they don’t)&lt;/li&gt;
&lt;li&gt;Checks if other nodes are still alive&lt;/li&gt;
&lt;li&gt;Removes DNS records for dead nodes automatically&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;No manual intervention. No stale records pointing to servers that went offline three weeks ago.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fb2lg178pcs0glf0j6bpg.jpeg" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fb2lg178pcs0glf0j6bpg.jpeg" alt=" " width="800" height="583"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  How It Actually Works
&lt;/h2&gt;

&lt;p&gt;When AnChat’s backend needs to resolve its namespace — ns-anchat.debros-orama.network — here’s what happens:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;The query hits our authoritative nameservers: ns1.debros-orama.network — ns2.debros-orama.network — ns3.debros-orama.network — three independent Orama Network nodes with glue records set at the registrar&lt;/li&gt;
&lt;li&gt;CoreDNS on that node queries RQLite, finds the A record, and responds&lt;/li&gt;
&lt;li&gt;If that node is down, the query automatically falls through to ns2 or ns3&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fo3m8f14zowwy9gz2218h.jpeg" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fo3m8f14zowwy9gz2218h.jpeg" alt=" " width="800" height="597"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Three nameservers on three independent VPS nodes. No single point of failure. No Cloudflare in the middle.&lt;/p&gt;

&lt;p&gt;Wildcard DNS &amp;amp; Automatic SSL&lt;/p&gt;

&lt;p&gt;The system supports wildcard DNS out of the box. Every node gets its own subdomain pattern — like *.node1.dbrs.space — so deployed apps automatically get DNS without anyone manually creating records.&lt;/p&gt;

&lt;p&gt;SSL certificates are handled through ACME DNS-01 challenges. When Caddy (our HTTPS server) needs a certificate for a new subdomain, it writes a TXT record directly into CoreDNS via the gateway API, Let’s Encrypt verifies it, and the certificate is issued. No Cloudflare API tokens. No external DNS provider. The whole chain is internal.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Self-Healing Part
&lt;/h2&gt;

&lt;p&gt;This is where it gets interesting. Traditional DNS is static — someone sets records, and if they break, someone has to fix them.&lt;/p&gt;

&lt;p&gt;Orama DNS is alive. Every node continuously ensures its own records are correct:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Node comes online? It registers itself in the dns_nodes table, creates its A records, and claims an NS slot (ns1, ns2, or ns3) if one is available.&lt;/li&gt;
&lt;li&gt;Node goes offline? Other nodes detect the missing heartbeat after 2 minutes, mark it inactive, and remove its A records from the round-robin pool. Dead IPs never get served to users.&lt;/li&gt;
&lt;li&gt;Database gets reset? The SOA and NS records are regenerated automatically on the next heartbeat cycle.&lt;/li&gt;
&lt;li&gt;Bad records from old code? A cleanup routine scrubs private IPs (10.0.0.x, 192.168.x.x) on every heartbeat — leftovers from an earlier bug we fixed.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The DNS system heals itself the same way the rest of Orama Network does. No ops team babysitting it at 3am.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fvub68xw5bo77s0ycd0rh.jpeg" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fvub68xw5bo77s0ycd0rh.jpeg" alt=" " width="800" height="800"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  AnChat Already Runs On This
&lt;/h2&gt;

&lt;p&gt;AnChat’s backend namespace — ns-anchat.debros-orama.network — is resolved entirely by our own nameservers. The gateway, the messaging infrastructure, the deployment routing — all served through DNS that we operate on Orama Network nodes.&lt;/p&gt;

&lt;p&gt;The public-facing anchat.io domain still uses traditional DNS for now. But the actual infrastructure underneath — the part that routes your messages, handles authentication, and runs the decentralized backend — that’s already on our DNS. No Cloudflare in the chain.&lt;/p&gt;

&lt;p&gt;When we say AnChat is decentralized, we mean the full stack:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Messaging: Decentralized — routed through independent Orama Network nodes, no central servers&lt;/li&gt;
&lt;li&gt;Identity: Wallet-based, no email or phone&lt;/li&gt;
&lt;li&gt;Metadata shielding: ANyONe Protocol onion routing&lt;/li&gt;
&lt;li&gt;Infrastructure: Orama Network distributed nodes&lt;/li&gt;
&lt;li&gt;DNS: Our own nameservers resolving the backend namespace&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Most projects claiming decentralization still have a Cloudflare dependency hiding in their infrastructure. We’re removing ours — layer by layer.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fxq2qkoq9dc3l8zy65qff.jpeg" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fxq2qkoq9dc3l8zy65qff.jpeg" alt=" " width="800" height="800"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Why This Matters
&lt;/h2&gt;

&lt;p&gt;DNS is the most overlooked single point of failure in the decentralization stack. Your app can run on decentralized infrastructure, your data can be encrypted end-to-end, your code can be open source — but if Cloudflare resolves your domain, one compliance email can take you offline.&lt;/p&gt;

&lt;p&gt;Running your own DNS isn’t easy. You need multiple nodes for redundancy, proper glue records at the registrar level, health monitoring, and automatic cleanup of stale records. We built all of that into Orama Network so that any project running on our infrastructure gets sovereign DNS by default.&lt;/p&gt;

&lt;p&gt;No middlemen. No kill switches. No asking permission to exist on the internet.&lt;/p&gt;

&lt;p&gt;That’s what infrastructure sovereignty actually looks like.&lt;/p&gt;

&lt;p&gt;DeBros builds privacy-first infrastructure. AnChat is our first app — decentralized messaging with zero metadata collection. Try the beta at &lt;a href="https://anchat.io" rel="noopener noreferrer"&gt;anchat.io&lt;/a&gt;&lt;/p&gt;

</description>
      <category>architecture</category>
      <category>distributedsystems</category>
      <category>networking</category>
      <category>web3</category>
    </item>
    <item>
      <title>DeBros NFT’s — Decentralized Development</title>
      <dc:creator>DeBros</dc:creator>
      <pubDate>Tue, 14 Oct 2025 13:43:24 +0000</pubDate>
      <link>https://forem.com/debros/debros-nfts-decentralized-development-4op3</link>
      <guid>https://forem.com/debros/debros-nfts-decentralized-development-4op3</guid>
      <description>&lt;p&gt;DeBros is more than a team; it is a decentralized brotherhood united by a shared vision, to build a more secure and liberated internet through our network and strategic partnerships.&lt;/p&gt;

&lt;p&gt;Non-Fungible Tokens (NFTs) represent a significant milestone in our infrastructure and roadmap, paving the way for a more connected and decentralized future. Holders of DeBros NFTs will gain exclusive privileges and tangible utility, far beyond mere hype or a simple digital image.&lt;/p&gt;

&lt;p&gt;We are thrilled to announce the official launch of our two NFT collections: &lt;strong&gt;DeBros 700&lt;/strong&gt; and &lt;strong&gt;DeBros Team 100&lt;/strong&gt;. Each collection offers remarkable real-world utilities, which we will explore in detail below.&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;“A dark, dystopian world is approaching fast — while we’re asleep. Our generation risks going down in history as the last one that had freedoms — and allowed them to be taken away. We’ve been fed a lie.&lt;br&gt;
— Pavel Durov&lt;/p&gt;

&lt;p&gt;“Ultimately, arguing that you don’t care about the right to privacy because you have nothing to hide is no different than saying you don’t care about free speech because you have nothing to say.”&lt;br&gt;
— Edward Snowden&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fzx0s6dq7rshxu3fcsn7s.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fzx0s6dq7rshxu3fcsn7s.png" width="673" height="513"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Our generation is inching closer to a dystopian future where freedom of speech and privacy are luxuries only a few can imagine. DeBros stands as a resolute resistance against the encroaching forces of globalists, unchecked AI, and overreaching governments.&lt;/p&gt;

&lt;p&gt;The DeBros NFT collections is not merely a digital image stored in a Solana wallet; it is a unique key for generations to come, granting access to a wide array of DeBros projects and real-world assets.&lt;/p&gt;




&lt;h3&gt;
  
  
  DeBros NFT 700
&lt;/h3&gt;

&lt;h4&gt;
  
  
  Apps &amp;amp; Software
&lt;/h4&gt;

&lt;p&gt;Holders of the DeBros 700 NFTs will enjoy unlimited access to current and future DeBros applications, including:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;Payme.sol Pro: A secure, decentralized payment platform designed for seamless transactions.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Blaze: A private, encrypted email service tailored for our community.&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Additionally, holders will gain early preview and beta access to upcoming applications, such as:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;AnChat (CLI, Lite): A lightweight, privacy-focused communication tool.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;DeViewer: An innovative platform for remote desktop viewing.&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;h4&gt;
  
  
  Voting DAO
&lt;/h4&gt;

&lt;p&gt;As a DeBros 700 NFT holder, your voice matters. You will have one vote in our Decentralized Autonomous Organization (DAO), empowering you to influence major decisions regarding treasury management, development priorities, and strategic partnerships. This ensures that our community remains at the heart of DeBros’ growth and direction.&lt;/p&gt;

&lt;h4&gt;
  
  
  Airdrops
&lt;/h4&gt;

&lt;p&gt;DeBros 700 NFT holders will be eligible for exclusive airdrops from partnerships and new projects. These airdrops may include digital assets, such as tokens, or real-world assets, such as hardware equipment, computers, and crypto hardware wallets. Looking ahead, we plan to distribute hardware nodes (currently under active R&amp;amp;D) to all 700 holders, further enhancing the utility and value of these NFTs.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F5jbobaboja1z9q7xn19q.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F5jbobaboja1z9q7xn19q.png" width="672" height="507"&gt;&lt;/a&gt;&lt;/p&gt;




&lt;h3&gt;
  
  
  DeBros Team NFT 100
&lt;/h3&gt;

&lt;p&gt;The DeBros Team collection is an ultra-exclusive, limited-edition set of 100 NFTs crafted for our most dedicated supporters and contributors. This elite group will play a pivotal role in shaping the DeBros ecosystem, with unparalleled access and influence. The Team 100 NFTs come with the following unique benefits:&lt;/p&gt;

&lt;h4&gt;
  
  
  Exclusive Developer Access
&lt;/h4&gt;

&lt;p&gt;Team 100 NFT holders will gain exclusive developer access to a collaborative and secure hub for application development under the DeBros umbrella and our R&amp;amp;D Center. This hub provides access to our proprietary toolkit, enabling holders to contribute directly to the creation of cutting-edge, privacy-focused applications. Whether you’re a developer or an innovator, this access empowers you to build alongside the DeBros team, shaping the future of our decentralized network.&lt;/p&gt;

&lt;h4&gt;
  
  
  Enhanced DAO Governance
&lt;/h4&gt;

&lt;p&gt;As a core supporter, each Team 100 NFT holder will wield five votes in our DAO governance, ensuring significant influence over development-focused decisions, treasury management, and strategic partnerships. This elevated voting power reflects the critical role Team 100 members play in guiding DeBros’ mission and vision.&lt;/p&gt;

&lt;h4&gt;
  
  
  Passive Income Opportunities
&lt;/h4&gt;

&lt;p&gt;Team 100 NFT holders will benefit from passive income generated through revenue-sharing from fees and services of existing DeBros applications on our network. This unique utility provides a tangible financial reward for supporting our mission, aligning your success with the growth of the DeBros ecosystem.&lt;/p&gt;

&lt;h4&gt;
  
  
  Access to Private Events and Real-World Hubs
&lt;/h4&gt;

&lt;p&gt;Team 100 members will enjoy exclusive access to private, in-person events hosted by DeBros, fostering networking and collaboration among our most committed supporters. Additionally, holders will have access to our physical DeBros hubs worldwide, fully equipped with cutting-edge hardware and amenities. Our mission is to create a worldwide network of safe havens for individuals committed to advancing our vision of privacy and decentralization. These hubs serve as secure spaces for innovation, collaboration, and advancing our decentralized vision.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fgo9dfav7i0xo4an8qzcv.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fgo9dfav7i0xo4an8qzcv.png" width="669" height="499"&gt;&lt;/a&gt;&lt;/p&gt;




&lt;h3&gt;
  
  
  Our Vision
&lt;/h3&gt;

&lt;p&gt;At DeBros, we are driven by a commitment to empower individuals and communities through decentralization. Our NFT collections are not just digital assets; they are a gateway to a movement that champions privacy, freedom, and innovation. By holding a DeBros NFT, you are not only investing in a secure and decentralized future but also becoming an integral part of our brotherhood.&lt;/p&gt;

&lt;p&gt;You can join our mission by purchasing DeBros NFTs on leading marketplaces. Both DeBros NFT collections are available on &lt;strong&gt;Magic Eden&lt;/strong&gt; and &lt;strong&gt;Tensor&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;Join us in resisting centralized control and building a world where privacy and freedom are not just dreams but realities for generations to come.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Magic Eden:&lt;/strong&gt;&lt;br&gt;
&lt;a href="https://magiceden.io/marketplace/debros" rel="noopener noreferrer"&gt;https://magiceden.io/marketplace/debros&lt;/a&gt;&lt;br&gt;
&lt;a href="https://magiceden.io/marketplace/debros_team" rel="noopener noreferrer"&gt;https://magiceden.io/marketplace/debros_team&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Tensor:&lt;/strong&gt;&lt;br&gt;
&lt;a href="https://www.tensor.trade/trade/debros" rel="noopener noreferrer"&gt;https://www.tensor.trade/trade/debros&lt;/a&gt;&lt;br&gt;
&lt;a href="https://www.tensor.trade/trade/debros_team" rel="noopener noreferrer"&gt;https://www.tensor.trade/trade/debros_team&lt;/a&gt;&lt;/p&gt;

</description>
      <category>web3</category>
      <category>nft</category>
      <category>privacy</category>
      <category>crypto</category>
    </item>
    <item>
      <title>Decentralized Development Ecosystem - DeBros Network</title>
      <dc:creator>DeBros</dc:creator>
      <pubDate>Mon, 22 Sep 2025 07:12:52 +0000</pubDate>
      <link>https://forem.com/debros/decentralized-development-ecosystem-debros-network-14md</link>
      <guid>https://forem.com/debros/decentralized-development-ecosystem-debros-network-14md</guid>
      <description>&lt;p&gt;As the official DeBros Development Team, we are thrilled to announce that we have open-sourced the DeBros Network, the first decentralized development ecosystem for developers.&lt;/p&gt;

&lt;p&gt;You can find the first public version of the Network in our official GitHub repository: &lt;a href="https://github.com/DeBrosOfficial/network" rel="noopener noreferrer"&gt;Github Repo&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;In this article, we will address the two most important questions about the Network:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;What is the Network, and why should developers care?&lt;/li&gt;
&lt;li&gt;The current state of the Network and how to contribute.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;You can read the whitepaper for the Network here: &lt;a href="https://debros.io/whitepaper" rel="noopener noreferrer"&gt;Whitepaper&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  What is the Network
&lt;/h2&gt;

&lt;p&gt;The DeBros Network is a decentralized ecosystem for developers that enables them to build applications with fewer bottlenecks, streamlined deployments, and simplified testing and development. It provides an extensive suite of tools, including:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Serverless functions&lt;/strong&gt; - Under R&amp;amp;D&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Network Buckets&lt;/strong&gt; (Private IPFS Swarm for saving files) - Internal Testing&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Network SQL&lt;/strong&gt; (RQLite Based distributed database) - In Beta&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Network Memory&lt;/strong&gt; (Distributed in-memory cache storage) - Under R&amp;amp;D&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Network DNS&lt;/strong&gt; (ENS, SNS, yggdrasil) - Under R&amp;amp;D&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Network AI&lt;/strong&gt; (Distributed AI models hosted directly on the network and custom neural networks) - Under R&amp;amp;D&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Network P2P&lt;/strong&gt; (LibP2P implementation for internal network communications) - In Beta&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Network KV&lt;/strong&gt; (Distributed key-value storage) - Internal Testing&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Network Agents&lt;/strong&gt; (Network base distributed based on custom neural networks) - Under R&amp;amp;D&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Network Analytics&lt;/strong&gt; (E2E encrypted analytics implementation for debugging and maintenance) - Under R&amp;amp;D&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Network Compute&lt;/strong&gt; (Compute engine for running docker images) - Under R&amp;amp;D&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Network Payments&lt;/strong&gt; (Get paid anonymously via DeBros Network and recurring payments with ABT protocol) - Under R&amp;amp;D&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  WEB2 Challenges
&lt;/h3&gt;

&lt;p&gt;Creating a fully featured application often requires extensive knowledge of various technologies and tools, such as finding a hosting provider for your database (e.g., PostgreSQL), event streaming platforms like Kafka, AI providers like OpenAI, or edge networks like Vercel. While these technologies may be manageable to develop locally, deployment presents significant challenges.&lt;/p&gt;

&lt;p&gt;Developers typically face two options:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;
&lt;strong&gt;Host everything on your own VPS&lt;/strong&gt;: This can be complex to set up and requires advanced server knowledge, especially for load balancing to ensure no downtime.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Use a cloud provider like AWS&lt;/strong&gt;: This involves a complicated setup and can incur extremely high costs, even for simple applications (terraform).&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Both options require you to independently set up a database, communication protocols, reverse proxy services, frontend, backend, storage buckets (for images and videos), and AI integrations. Moreover, your data and your customers’ data are not encrypted by default. Instead, they are stored and processed by third-party companies, leaving you vulnerable to risks like account bans, missed payments, or service shutdowns.&lt;/p&gt;

&lt;p&gt;These companies sell the lie of extreme up time like five 9’s which is rarely the case because these numbers are hard to get because of the complexity of the architecture of these ecosystems.&lt;/p&gt;

&lt;p&gt;Let’s consider a basic technology stack for a standard application using Web2 technologies:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;
&lt;strong&gt;MongoDB&lt;/strong&gt; Atlas for deployment of your database &lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Vercel&lt;/strong&gt; for deployment of your frontend &lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;AWS&lt;/strong&gt; Bucket for hosting images and videos&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Stripe&lt;/strong&gt; as a payment provider&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Cloudflare&lt;/strong&gt; for setting up your domain and DNS&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;OpenRouter&lt;/strong&gt; as the AI Model provider&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;You have other options as well, deploying all of the above inside AWS or GCP but this risks centralization and higher costs. Even if you don’t care about privacy and decentralization setting up all of the above services can be frustrating and difficult, because you need 6 different accounts and API key’s.&lt;/p&gt;

&lt;p&gt;For all of the WEB3 developers out there, we all know that creating a fully featured application with WEB3 and blockchain technologies is not even possible, like a social network for example. WEB3 Developers in cases like this use blockchain technologies like SUI or Ethereum as there databases but we will know doing 1 million transactions to just store 3 likes and 2 comments is not ideal nor easy to do.&lt;/p&gt;

&lt;p&gt;Our Network approach is trying to solve this problem by making everything decentralized and encrypted by default without the developer even knowing about it. For you to understand if you put on a scale WEB3 Development, WEB2 Development and DeBros Network it will look like this:&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F9qscvq8a8m5xedrsejle.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F9qscvq8a8m5xedrsejle.png" alt=" " width="800" height="191"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Even in WEB3 development right now nothing is truly decentralized because we are doing workarounds and using different providers to fix our issues.&lt;/p&gt;

&lt;p&gt;Let’s take a simple look at what DeBros Network is promising:&lt;/p&gt;

&lt;p&gt;_You need to know that our network is still under active development some of the features you will see below are either unstable or unreleased, you can see the current state of our released features here: &lt;a href="https://network.debros.io/docs/network/client-sdk/#database-api" rel="noopener noreferrer"&gt;https://network.debros.io/docs/network/client-sdk/#database-api&lt;/a&gt; &lt;/p&gt;

&lt;p&gt;Our Network Client SDK is Currently written in Go and we also have a Gateway HTTP Interface_&lt;/p&gt;

&lt;h3&gt;
  
  
  Initializing the Network
&lt;/h3&gt;

&lt;p&gt;To get started, import the Network package and set up your API key. This grants you access to the DeBros Network and all of its services.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fpeg7jp9v1rjubc0f4jbh.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fpeg7jp9v1rjubc0f4jbh.png" alt=" " width="800" height="597"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  SQL Database
&lt;/h3&gt;

&lt;p&gt;For SQL databases, we leverage a decentralized, open-source solution called Rqlite in the background. While the current table creation process can be somewhat repetitive, we are committed to simplifying it in future updates. You can help us achieve this by forking the project and contributing to its development.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fa93soprxxgw730zd2chs.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fa93soprxxgw730zd2chs.png" alt=" " width="800" height="452"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  NoSQL Database (unreleased)
&lt;/h3&gt;

&lt;p&gt;The DeBros Network supports not only traditional SQL databases but also decentralized and encrypted NoSQL databases, providing developers with flexible and secure options.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fltgiyvmgn59w28lfbn9u.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fltgiyvmgn59w28lfbn9u.png" alt=" " width="800" height="393"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  Save in Cache Storage (unreleased)
&lt;/h3&gt;

&lt;p&gt;Similar to traditional systems, our Network offers fast in-memory cache storage. As you’ll see, it’s designed to be simple and intuitive to use.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fozfhdbqrz3p6ut2sccko.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fozfhdbqrz3p6ut2sccko.png" alt=" " width="800" height="400"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  PubSub Events
&lt;/h3&gt;

&lt;p&gt;Another powerful feature is our event system, built on PubSub and LibP2P. This allows you to publish or subscribe to events, enabling an event-driven architecture for your applications, including mobile apps.&lt;/p&gt;

&lt;p&gt;We don’t want to overwhelm you with a long list of features, but rest assured, we plan to include nearly every tool you’d find in a traditional cloud provider—only simpler and more cost-effective. Upcoming features include AI, bucket storage (for files), AI agents, analytics, payments, serverless functions, and compute resources.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F7f9c5g71ywwn6ew957wa.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F7f9c5g71ywwn6ew957wa.png" alt=" " width="800" height="404"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  The current state of the Network and how to contribute.
&lt;/h3&gt;

&lt;p&gt;The DeBros Network is currently under active development and not yet in a stable release. We aim to reach a stable version by the end of 2026. As we’re in the early stages, you may encounter bugs and errors. Below is the current architecture of the Network:&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fvggylgnnnxdjpwlnjwxu.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fvggylgnnnxdjpwlnjwxu.png" alt=" " width="800" height="1986"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Contributing is straightforward: fork the repository, work on your changes in a separate branch, and submit a pull request. We encourage you to engage in discussions, ask questions, and share feedback on GitHub or in our Telegram group.&lt;/p&gt;

&lt;p&gt;Start here by reading the developer documentation:&lt;br&gt;
&lt;a href="https://network.debros.io/docs/network/overview/" rel="noopener noreferrer"&gt;https://network.debros.io/docs/network/overview/&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Explore our official links: &lt;a href="https://linktr.ee/debrosofficial" rel="noopener noreferrer"&gt;https://linktr.ee/debrosofficial&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Thanks for reading,&lt;br&gt;
The DeBros Team&lt;/p&gt;

</description>
      <category>web3</category>
      <category>ai</category>
      <category>opensource</category>
    </item>
  </channel>
</rss>
