--- title: Feeds id: feeds description: Explains mutable content feeds allowing for updating content while maintaining a static address. --- Swarm feeds cleverly combine [single owner chunks](./chunk-types.md) into a data structure which enables you to have static addresses for your mutable content. This means that you can signpost your data for other Bees, and then update it at will. :::info Although it's possible to interact with feeds directly, it can involve a little data juggling and crypto magic. For the easiest route, see [the bee-js feeds functionality](./bee-js.md) and [swarm-cli](./../../bee/working-with-bee/swarm-cli.md), or for the super 1337, share your implementations in other languages in the [#builders](https://discord.gg/8SMCfvm3kw) channel of our [Discord Server](https://discord.gg/kHRyMNpw7t). ::: ### What are Feeds? A feed is a collection of Single Owner Chunks with predicatable addresses. This enables creators to upload pointers to data so that consumers of the feed are able to find the data in Swarm using only an _Ethereum address_ and _Topic ID_. ### Creating and Updating a Feed In order to edit a feed, you will need to sign your chunks using an Ethereum keypair. For the intrepid, check out the [The Book of Swarm](https://www.ethswarm.org/the-book-of-swarm-2.pdf) on precise details on how to do this. For the rest of us, both [bee-js](./bee-js.md) and [swarm-cli](./../../bee/working-with-bee/swarm-cli.md) provide facilities to achieve this using JavaScript and a node-js powered command line tool respectively. ### No More ENS Transaction Charges Swarm's feeds provide the ability to update your immutable content in a mutable world. Simply reference your feed's `manifest address` as the `content hash` in your ENS domain's resolver, and Bee will automatically provide the latest version of your website. ### Use Cases for Feeds Feeds are a hugely versatile data structure. They allow you to host frequently updated content such as websites, RSS feeds (for podcasts, news, etc.), or even a DNS style architecture on top of Swarm's decentralized DISC.