├── .github ├── FUNDING.yml └── workflows │ └── main.yml ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── documents ├── EffectiveUI_HeadlessCMS.pdf └── the-rise-of-the-headless-cms.pdf └── readme.md /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: n370 2 | -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- 1 | name: CI 2 | on: 3 | pull_request: 4 | branches: [main] 5 | jobs: 6 | Awesome_Lint: 7 | runs-on: ubuntu-latest 8 | steps: 9 | - uses: actions/checkout@v2 10 | with: 11 | fetch-depth: 0 12 | - run: npx awesome-lint 13 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- 1 | 2 | # Contributor Covenant Code of Conduct 3 | 4 | ## Our Pledge 5 | 6 | We as members, contributors, and leaders pledge to make participation in our 7 | community a harassment-free experience for everyone, regardless of age, body 8 | size, visible or invisible disability, ethnicity, sex characteristics, gender 9 | identity and expression, level of experience, education, socio-economic status, 10 | nationality, personal appearance, race, religion, or sexual identity 11 | and orientation. 12 | 13 | We pledge to act and interact in ways that contribute to an open, welcoming, 14 | diverse, inclusive, and healthy community. 15 | 16 | ## Our Standards 17 | 18 | Examples of behavior that contributes to a positive environment for our 19 | community include: 20 | 21 | * Demonstrating empathy and kindness toward other people 22 | * Being respectful of differing opinions, viewpoints, and experiences 23 | * Giving and gracefully accepting constructive feedback 24 | * Accepting responsibility and apologizing to those affected by our mistakes, 25 | and learning from the experience 26 | * Focusing on what is best not just for us as individuals, but for the 27 | overall community 28 | 29 | Examples of unacceptable behavior include: 30 | 31 | * The use of sexualized language or imagery, and sexual attention or 32 | advances of any kind 33 | * Trolling, insulting or derogatory comments, and personal or political attacks 34 | * Public or private harassment 35 | * Publishing others' private information, such as a physical or email 36 | address, without their explicit permission 37 | * Other conduct which could reasonably be considered inappropriate in a 38 | professional setting 39 | 40 | ## Enforcement Responsibilities 41 | 42 | Community leaders are responsible for clarifying and enforcing our standards of 43 | acceptable behavior and will take appropriate and fair corrective action in 44 | response to any behavior that they deem inappropriate, threatening, offensive, 45 | or harmful. 46 | 47 | Community leaders have the right and responsibility to remove, edit, or reject 48 | comments, commits, code, wiki edits, issues, and other contributions that are 49 | not aligned to this Code of Conduct, and will communicate reasons for moderation 50 | decisions when appropriate. 51 | 52 | ## Scope 53 | 54 | This Code of Conduct applies within all community spaces, and also applies when 55 | an individual is officially representing the community in public spaces. 56 | Examples of representing our community include using an official e-mail address, 57 | posting via an official social media account, or acting as an appointed 58 | representative at an online or offline event. 59 | 60 | ## Enforcement 61 | 62 | Instances of abusive, harassing, or otherwise unacceptable behavior may be 63 | reported to the community leaders responsible for enforcement at 64 | ama@n370.info. 65 | All complaints will be reviewed and investigated promptly and fairly. 66 | 67 | All community leaders are obligated to respect the privacy and security of the 68 | reporter of any incident. 69 | 70 | ## Enforcement Guidelines 71 | 72 | Community leaders will follow these Community Impact Guidelines in determining 73 | the consequences for any action they deem in violation of this Code of Conduct: 74 | 75 | ### 1. Correction 76 | 77 | **Community Impact**: Use of inappropriate language or other behavior deemed 78 | unprofessional or unwelcome in the community. 79 | 80 | **Consequence**: A private, written warning from community leaders, providing 81 | clarity around the nature of the violation and an explanation of why the 82 | behavior was inappropriate. A public apology may be requested. 83 | 84 | ### 2. Warning 85 | 86 | **Community Impact**: A violation through a single incident or series 87 | of actions. 88 | 89 | **Consequence**: A warning with consequences for continued behavior. No 90 | interaction with the people involved, including unsolicited interaction with 91 | those enforcing the Code of Conduct, for a specified period of time. This 92 | includes avoiding interactions in community spaces as well as external channels 93 | like social media. Violating these terms may lead to a temporary or 94 | permanent ban. 95 | 96 | ### 3. Temporary Ban 97 | 98 | **Community Impact**: A serious violation of community standards, including 99 | sustained inappropriate behavior. 100 | 101 | **Consequence**: A temporary ban from any sort of interaction or public 102 | communication with the community for a specified period of time. No public or 103 | private interaction with the people involved, including unsolicited interaction 104 | with those enforcing the Code of Conduct, is allowed during this period. 105 | Violating these terms may lead to a permanent ban. 106 | 107 | ### 4. Permanent Ban 108 | 109 | **Community Impact**: Demonstrating a pattern of violation of community 110 | standards, including sustained inappropriate behavior, harassment of an 111 | individual, or aggression toward or disparagement of classes of individuals. 112 | 113 | **Consequence**: A permanent ban from any sort of public interaction within 114 | the community. 115 | 116 | ## Attribution 117 | 118 | This Code of Conduct is adapted from the [Contributor Covenant][homepage], 119 | version 2.0, available at 120 | https://www.contributor-covenant.org/version/2/0/code_of_conduct.html. 121 | 122 | Community Impact Guidelines were inspired by [Mozilla's code of conduct 123 | enforcement ladder](https://github.com/mozilla/diversity). 124 | 125 | [homepage]: https://www.contributor-covenant.org 126 | 127 | For answers to common questions about this code of conduct, see the FAQ at 128 | https://www.contributor-covenant.org/faq. Translations are available at 129 | https://www.contributor-covenant.org/translations. 130 | 131 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | # Contribution Guidelines 2 | 3 | Please note that this project is released with a [Contributor Code of Conduct](CODE-OF-CONDUCT.md). By participating in this project you agree to abide by its terms. 4 | 5 | ## Adding something to the list 6 | 7 | 1. Update README.md adding your contribution. 8 | 2. Run `npx awesome-lint` to make sure it has no issues. 9 | 3. Open a PR with your changes. 10 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Creative Commons Legal Code 2 | 3 | CC0 1.0 Universal 4 | 5 | CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE 6 | LEGAL SERVICES. DISTRIBUTION OF THIS DOCUMENT DOES NOT CREATE AN 7 | ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS 8 | INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES 9 | REGARDING THE USE OF THIS DOCUMENT OR THE INFORMATION OR WORKS 10 | PROVIDED HEREUNDER, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM 11 | THE USE OF THIS DOCUMENT OR THE INFORMATION OR WORKS PROVIDED 12 | HEREUNDER. 13 | 14 | Statement of Purpose 15 | 16 | The laws of most jurisdictions throughout the world automatically confer 17 | exclusive Copyright and Related Rights (defined below) upon the creator 18 | and subsequent owner(s) (each and all, an "owner") of an original work of 19 | authorship and/or a database (each, a "Work"). 20 | 21 | Certain owners wish to permanently relinquish those rights to a Work for 22 | the purpose of contributing to a commons of creative, cultural and 23 | scientific works ("Commons") that the public can reliably and without fear 24 | of later claims of infringement build upon, modify, incorporate in other 25 | works, reuse and redistribute as freely as possible in any form whatsoever 26 | and for any purposes, including without limitation commercial purposes. 27 | These owners may contribute to the Commons to promote the ideal of a free 28 | culture and the further production of creative, cultural and scientific 29 | works, or to gain reputation or greater distribution for their Work in 30 | part through the use and efforts of others. 31 | 32 | For these and/or other purposes and motivations, and without any 33 | expectation of additional consideration or compensation, the person 34 | associating CC0 with a Work (the "Affirmer"), to the extent that he or she 35 | is an owner of Copyright and Related Rights in the Work, voluntarily 36 | elects to apply CC0 to the Work and publicly distribute the Work under its 37 | terms, with knowledge of his or her Copyright and Related Rights in the 38 | Work and the meaning and intended legal effect of CC0 on those rights. 39 | 40 | 1. Copyright and Related Rights. A Work made available under CC0 may be 41 | protected by copyright and related or neighboring rights ("Copyright and 42 | Related Rights"). Copyright and Related Rights include, but are not 43 | limited to, the following: 44 | 45 | i. the right to reproduce, adapt, distribute, perform, display, 46 | communicate, and translate a Work; 47 | ii. moral rights retained by the original author(s) and/or performer(s); 48 | iii. publicity and privacy rights pertaining to a person's image or 49 | likeness depicted in a Work; 50 | iv. rights protecting against unfair competition in regards to a Work, 51 | subject to the limitations in paragraph 4(a), below; 52 | v. rights protecting the extraction, dissemination, use and reuse of data 53 | in a Work; 54 | vi. database rights (such as those arising under Directive 96/9/EC of the 55 | European Parliament and of the Council of 11 March 1996 on the legal 56 | protection of databases, and under any national implementation 57 | thereof, including any amended or successor version of such 58 | directive); and 59 | vii. other similar, equivalent or corresponding rights throughout the 60 | world based on applicable law or treaty, and any national 61 | implementations thereof. 62 | 63 | 2. Waiver. To the greatest extent permitted by, but not in contravention 64 | of, applicable law, Affirmer hereby overtly, fully, permanently, 65 | irrevocably and unconditionally waives, abandons, and surrenders all of 66 | Affirmer's Copyright and Related Rights and associated claims and causes 67 | of action, whether now known or unknown (including existing as well as 68 | future claims and causes of action), in the Work (i) in all territories 69 | worldwide, (ii) for the maximum duration provided by applicable law or 70 | treaty (including future time extensions), (iii) in any current or future 71 | medium and for any number of copies, and (iv) for any purpose whatsoever, 72 | including without limitation commercial, advertising or promotional 73 | purposes (the "Waiver"). Affirmer makes the Waiver for the benefit of each 74 | member of the public at large and to the detriment of Affirmer's heirs and 75 | successors, fully intending that such Waiver shall not be subject to 76 | revocation, rescission, cancellation, termination, or any other legal or 77 | equitable action to disrupt the quiet enjoyment of the Work by the public 78 | as contemplated by Affirmer's express Statement of Purpose. 79 | 80 | 3. Public License Fallback. Should any part of the Waiver for any reason 81 | be judged legally invalid or ineffective under applicable law, then the 82 | Waiver shall be preserved to the maximum extent permitted taking into 83 | account Affirmer's express Statement of Purpose. In addition, to the 84 | extent the Waiver is so judged Affirmer hereby grants to each affected 85 | person a royalty-free, non transferable, non sublicensable, non exclusive, 86 | irrevocable and unconditional license to exercise Affirmer's Copyright and 87 | Related Rights in the Work (i) in all territories worldwide, (ii) for the 88 | maximum duration provided by applicable law or treaty (including future 89 | time extensions), (iii) in any current or future medium and for any number 90 | of copies, and (iv) for any purpose whatsoever, including without 91 | limitation commercial, advertising or promotional purposes (the 92 | "License"). The License shall be deemed effective as of the date CC0 was 93 | applied by Affirmer to the Work. Should any part of the License for any 94 | reason be judged legally invalid or ineffective under applicable law, such 95 | partial invalidity or ineffectiveness shall not invalidate the remainder 96 | of the License, and in such case Affirmer hereby affirms that he or she 97 | will not (i) exercise any of his or her remaining Copyright and Related 98 | Rights in the Work or (ii) assert any associated claims and causes of 99 | action with respect to the Work, in either case contrary to Affirmer's 100 | express Statement of Purpose. 101 | 102 | 4. Limitations and Disclaimers. 103 | 104 | a. No trademark or patent rights held by Affirmer are waived, abandoned, 105 | surrendered, licensed or otherwise affected by this document. 106 | b. Affirmer offers the Work as-is and makes no representations or 107 | warranties of any kind concerning the Work, express, implied, 108 | statutory or otherwise, including without limitation warranties of 109 | title, merchantability, fitness for a particular purpose, non 110 | infringement, or the absence of latent or other defects, accuracy, or 111 | the present or absence of errors, whether or not discoverable, all to 112 | the greatest extent permissible under applicable law. 113 | c. Affirmer disclaims responsibility for clearing rights of other persons 114 | that may apply to the Work or any use thereof, including without 115 | limitation any person's Copyright and Related Rights in the Work. 116 | Further, Affirmer disclaims responsibility for obtaining any necessary 117 | consents, permissions or other rights required for any use of the 118 | Work. 119 | d. Affirmer understands and acknowledges that Creative Commons is not a 120 | party to this document and has no duty or obligation with respect to 121 | this CC0 or use of the Work. 122 | -------------------------------------------------------------------------------- /documents/EffectiveUI_HeadlessCMS.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n370/awesome-headless-cms/a1008422cf49d803c2d0d691808a0e8d7b563adc/documents/EffectiveUI_HeadlessCMS.pdf -------------------------------------------------------------------------------- /documents/the-rise-of-the-headless-cms.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n370/awesome-headless-cms/a1008422cf49d803c2d0d691808a0e8d7b563adc/documents/the-rise-of-the-headless-cms.pdf -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | # Awesome Headless CMS [![Awesome](https://awesome.re/badge-flat2.svg)](https://awesome.re) 4 | 5 | A community curated list of Headless CMS tools, blogs and other resources. 6 | 7 | 8 | ## Contents 9 | 10 | * [Articles](#articles) 11 | * [Documents](#documents) 12 | * [Speaker Decks](#speaker-decks) 13 | * [Webinars](#webinars) 14 | * [Videos](#videos) 15 | * [Tools](#tools) 16 | * [Resources](#resources) 17 | * [Conferences](#conferences) 18 | 19 | ## Articles 20 | 21 | * [Headless CMS: Learn the What, Why, and How?](https://buttercms.com/blog/headless-cms-learn-the-what-why-and-how) - [@buttercms](https://github.com/buttercms). 22 | * [Content as a Service: Your Guide to the What, Why, and How?](https://buttercms.com/blog/content-as-a-service-your-guide-to-the-what-why-and-how) - [@buttercms](https://github..com/buttercms). 23 | * [Headless CMS explained in 5 minutes](https://www.storyblok.com/tp/headless-cms-explained) - [@storyblok](https://github.com/storyblok/). 24 | * [What is a Headless CMS?](https://css-tricks.com/what-is-a-headless-cms/) - [@chriscoyer](https://github.com/chriscoyier). 25 | * [Headless CMS explained in 1 minute](https://www.contentful.com/r/knowledgebase/what-is-headless-cms/) - [@contentiful](https://github.com/contentful). 26 | * [Content as a Service (CaaS): Decoupled CMS and Headless CMS 101](https://www.ibexa.co/blog/content-as-a-service-caas-decoupled-cms-and-headless-cms-101) - [@rolandbenedetti](https://twitter.com/rolandbenedetti) 27 | * [Decoupled CMS: How to use WordPress and Drupal CMSs with modern frontends, mobile apps, and even IoT devices](https://pantheon.io/decoupled-cms) - [@getpantheon](https://twitter.com/getpantheon). 28 | * [The Nearly-Headless CMS](https://alistapart.com/column/nearly-headless-cms) - [@dirtystylus](https://twitter.com/dirtystylus). 29 | * [What are the examples of decoupled/headless CMSs?](https://qr.ae/pNPZuN) - [@Quora](https://twitter.com/Quora). 30 | * [A Headless CMS Won't Solve All Your Woes](http://www.cmswire.com/web-cms/a-headless-cms-wont-solve-all-your-woes/) - [@bkraft](https://twitter.com/bkraft). 31 | * [Two Headless CMS - Head to Head](https://medium.com/apegroup-texts/two-headless-cms-head-to-head-94ea26b0b80f#.cocaed99l) - [@elektromin](https://twitter.com/elektromin). 32 | * [Cloud-First Headless CMS: What It Is and Why You Should Use It](https://www.cmscritic.com/cloud-first-headless-cms-what-it-is-and-why-you-should-use-it/) - [@cmscritic](https://.twitter.com/cmscritic) 33 | * [What is a cloud-first headless CMS?](https://kontent.ai/blog/what-is-headless-cms) - [@KenticoKontent](https://twitter.com/kenticokontent). 34 | * [Should you Decouple?](https://www.lullabot.com/articles/should-you-decouple) - [@lullabot](https://twitter.com/lullabot). 35 | * [Blackstar, the API-first, headless CMS built for developers](http://withouttheloop.com/articles/2016-04-27-headless-cms/) - [@liammclennan](https://twitter.com/liammclennan). 36 | * [The Ultimate Guide for Headless Content Management Systems](http://www.cms-connected.com/News-Archive/December-2016/The-Ultimate-Guide-for-Headless-Content-Management) - [@cmsconnected](https://twitter.com/cmsconnected) 37 | * [Built.io wants to challenge Drupal and WordPress with its headless CMS](https://techcrunch.com/2016/03/10/built-io-wants-to-challenge-drupal-and-wordpress-with-its-headless-cms/.) - [@TechCrunch](https://twitter.com/techcrunch) 38 | * [What is a headless CMS?](http://www.oshyn.com/Blogs/2016/december/Headless-CMS) - [@Oshyn_Inc](https://twitter.com/Oshyn_Inc). 39 | * [How to Integrate a Headless CMS in a React App in Easy Steps](https://www.lytecms.com/blog/how-to-integrate-headless-cms-in-react-app) - [@lytecms](https://twitter.com/lytecms) 40 | * [Perch Runway 3 as a Headless CMS](https://grabaperch.com/blog/archive/perch-runway-3-as-a-headless-cms) - [@grabaperch](https://twitter.com/grabaperch). 41 | * [Decoupling with a Headless CMS](https://symfony-cms.net/decoupling-headless-cms) 42 | * [Headless CMS – just a fad?](http://www.digitalclaritygroup.com/headless-cms/) - [@Just_Clarity](https://twitter.com/Just_Clarity). 43 | * [Headless vs. Decoupled CMS Architecture](https://hackernoon.com/headless-vs-decoupled-cms-architecture-e240838fbc99) - [@carsoncgibbons](https://twitter.com/carsoncgibbons). 44 | * [Use Cases for a Headless CMS](http://gadgetopia.com/post/9743) - [@gadgetopia](https://twitter.com/gadgetopia/). 45 | * [Decoupled CMS is the New Black](http://gadgetopia.com/post/7330) - [@gadgetopia](https://twitter.com/gadgetopia/). 46 | * [Sitecore as a true headless CMS](https://www.sitecore.net/da-dk/company/blog/356/sitecore-as-a-true-headless-cms-4418) - [@Sitecore](https://twitter.com/Sitecore). 47 | * [Building Decoupled Sites and Apps with GraphQL and Next.js](https://malloc.fi/building-decoupled-sites-and-apps-with-graphql-and-next-js) - [@velmu](https://twitter.com/velmu). 48 | 49 | ## Documents 50 | 51 | 52 | * [The Rise Of The Headless Content ManagementSystem](documents/the-rise-of-the-headless-cms.pdf) - [@forrester](https://twitter.com/forrester). 53 | * [The case for headless CMS](documents/EffectiveUI_HeadlessCMS.pdf) - [@effectiveui](https://twitter.com/effectiveui/). 54 | * [State of the Headless CMS Market 2020](https://tracker.kontent.ai/592920/state-of-the-headless-cms-market-2020) - [@kenticokontent](https://twitter.com/kenticokontent/). 55 | 56 | 57 | ## Speaker Decks 58 | 59 | * [WordPress as a Headless CMS](https://www.slideshare.net/WordCampSydney/wordpress-as-a-headless-cms) - [@bronsonquick](https://twitter.com/bronsonquick). 60 | * [Easy decoupled sitebuilding with GraphQL and Next.js](https://janit.iki.fi/cms-graphql-nextjs/#/) 61 | 62 | ## Webinars 63 | 64 | * [The future of the CMS](http://blog.invisionapp.com/the-future-of-the-cms/) - [@InVisionApp](https://twitter.com/InVisionApp). 65 | * [Love Your CMS](https://alistapart.com/event/content-management) - [@alistapart](https://twitter.com/alistapart). 66 | 67 | ## Videos 68 | 69 | * [A Conscious Uncoupling: WordPress as a Headless CMS](https://www.youtube.com/watch?v=RDx6G287WKo) - [@krissierae](https://twitter.com/krissierae). 70 | * [Easy decoupled sitebuilding with GraphQL and Next.js](https://www.youtube.com/watch?v=XcWsa3s8GnE) 71 | 72 | ## Tools 73 | * [Atomic-Server](https://github.com/atomicdata-dev/atomic-data-rust/) - Performant open source headless CMS with an embedded database, written in Rust. 74 | * [Agility CMS](https://agilitycms.com/) - Agility CMS supports RESTful and GraphQL APIs for fast and easy integration with any system. 75 | * [Buckets](http://buckets.io/) - Buckets is an Open Source CMS built on Node.js and MongoDB. 76 | * [ButterCMS](https://buttercms.com/) - Headless CMS you'll melt over. 77 | * [Cloud CMS](https://www.cloudcms.com/) - Cloud CMS is a headless, API-first approach to content management, built around JSON and a high performance cloud architecture. 78 | * [Cockpit](https://getcockpit.com/) - Simple Content Platform to manage any structured content. 79 | * [Contember](https://www.contember.com) - Bespoke content management. Build and run GraphQL API and user-centric administration without any hassle. 80 | * [Contentful](https://www.contentful.com/) - The content platform for the digital-first era. 81 | * [Contentstack](https://www.contentstack.com/developers-cms) - A CMS by Developers for Developers. 82 | * [CosmicJS](https://cosmicjs.com/) - Headless CMS and API toolkit to help your team build modern apps faster, together. 83 | * [CraftCMS](https://craftcms.com/) - Craft is a flexible, user-friendly CMS for creating custom digital experiences on the web and beyond. 84 | * [Directus](https://getdirectus.com/) - Directus is an open-source tool that wraps custom SQL databases with a dynamic API, and provides an intuitive admin app for managing its content. 85 | * [dotCMS](http://dotcms.com/) - We are the next-generation platform that supports both the flexibility of a headless CMS, with the efficiency of traditional content authoring. 86 | * [Easyweb](https://www.easyweb.site/) - Easyweb is a minimalistic user friendly headless CMS for hand crafted sites, shops, apps and digital projects. 87 | * [Flextype](https://flextype.org/) - Flextype provides faster, more productive way for you to build and manage content for any kind of projects. 88 | * [Flotiq](https://flotiq.com/) - API-first content management platform that works with any technology, framework, and language. 89 | * [FrontAid CMS](https://frontaid.io/) - Git-based headless CMS for JSON files. 90 | * [Graph CMS](https://graphcms.com/) - Rapidly deliver digital content at scale. 91 | * [Graphweaver](https://graphweaver.com/) - Turn multiple data sources into a single GraphQL API. 92 | * [Kentico Kontent](https://kontent.ai/) - A headless CMS loved by both developers and marketers. 93 | * [KeystoneJS](https://keystonejs.com/) - Configure your schema in JavaScript, and KeystoneJS will generate a powerful GraphQL API and CMS. 94 | * [Payload CMS](https://payloadcms.com/) - A self-hosted, headless CMS with code-first configuration, customizable admin panel, and a rich editing experience. 95 | * [Perch Runaway](https://perchrunway.com/) - A powerful CMS for developing content-centric websites. 96 | * [prismic.io](https://prismic.io/) - Prismic is a Content Management System, a tool for editing online content. 97 | * [Silverstripe CMS](https://www.silverstripe.org) - A rapid development MVC framework which can be queried either via GraphQL or a custom API. 98 | * [StoryBlok](https://www.storyblok.com/) - Storyblok helps your team to tell your story and manage content for every use-case. 99 | * [Strapi](https://strapi.io/) - Strapi is the leading open-source headless CMS. It's 100% JavaScript, fully customizable and developer-first. 100 | * [Superdesk](https://www.superdesk.org/) - Superdesk is a state-of-the-art digital newsroom system. 101 | * [Tipe](https://tipe.io/) - Tipe is a customizable, open-source headless CMS for structured content. 102 | * [unite cms](https://www.unitecms.io/) - Unite CMS allows you to connect and manage all your digital project's data in one single backend. 103 | * [Zesty](https://www.zesty.io/) - A cloud content management system for businesses to create and distribute content to websites and other digital experiences at scale. 104 | 105 | ## Resources 106 | 107 | * [Headless CMS](https://headlesscms.org/) - A List of Content Management Systems for Jamstack Sites. 108 | * [StaticGen](https://www.staticgen.com/) - A List of Static Site Generators for Jamstack Sites. 109 | * [Headless Commerce](https://headlesscommerce.org/) - A community curated list of commerce products, services, podcasts, books, and more. 110 | 111 | ## Conferences 112 | 113 | ### Past 114 | 115 | * [Headless Commerce Summit, Thursday, Sept 3 2020 9AM – 1PM PST](https://headlesscommercesummit.com/) 116 | 117 | ### Upcoming 118 | --------------------------------------------------------------------------------