{"id":19436419,"url":"https://github.com/escss-labs/escss","last_synced_at":"2026-02-18T03:01:46.059Z","repository":{"id":256020762,"uuid":"850885251","full_name":"ESCSS-labs/ESCSS","owner":"ESCSS-labs","description":"The progressive methodology","archived":false,"fork":false,"pushed_at":"2025-12-18T16:36:53.000Z","size":4229,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-12-20T06:43:34.930Z","etag":null,"topics":["bem-methodology","css","e2e-testing","html","javascript","scss","tailwindcss"],"latest_commit_sha":null,"homepage":"","language":null,"has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ESCSS-labs.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2024-09-02T02:41:15.000Z","updated_at":"2025-12-18T16:36:57.000Z","dependencies_parsed_at":"2024-10-26T07:49:05.271Z","dependency_job_id":"a3b4a5d9-2135-46e0-9d66-697474a3c966","html_url":"https://github.com/ESCSS-labs/ESCSS","commit_stats":null,"previous_names":["escss-home/escss","escss-lab/escss","escss-labs/escss"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/ESCSS-labs/ESCSS","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ESCSS-labs%2FESCSS","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ESCSS-labs%2FESCSS/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ESCSS-labs%2FESCSS/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ESCSS-labs%2FESCSS/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ESCSS-labs","download_url":"https://codeload.github.com/ESCSS-labs/ESCSS/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ESCSS-labs%2FESCSS/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29566644,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-18T00:47:08.760Z","status":"online","status_checked_at":"2026-02-18T02:00:09.468Z","response_time":162,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["bem-methodology","css","e2e-testing","html","javascript","scss","tailwindcss"],"created_at":"2024-11-10T15:11:03.808Z","updated_at":"2026-02-18T03:01:46.054Z","avatar_url":"https://github.com/ESCSS-labs.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"![logo](./assets/logo.png)\n\n# What is ESCSS?\n\nESCSS (pronounced \"escapes\") is **the progressive methodology** based on [BEM](https://en.bem.info/) \u0026 [The Mythical Man-Month](https://en.wikipedia.org/wiki/The_Mythical_Man-Month)\n\n## Why?\n  - 🔥 Bring Clarity to HTML/CSS/JS Project\n  - 💪 ID-Based E2E Simplicity\n  - 🤝 Harmony with CSS, SCSS and Tailwind\n  - 💣 Don't care about CSS specificity\n  - ❤️ Clean CSS DevTools Experience\n  - 🪶 Smaller CSS sizes\n  - ⬇️ Clean HTML\n  ![image](./assets/cable-management.png)\n\n## Emoji for Visualization (Optional)\n  - (🏗️)LayoutComponent\n  - (🏠)page-component -\u003e `kebab-case` for URL-related page components.\n  - (🔩)SharedComponent\n  - (🧱)Component\n\n## Naming Convention:\n\n- PascalCase: \n  - 🧱CardList (see `CardList.vue`, `CardList.jsx`)\n\n- Only `First` / `Last` word matters:\n  - 🧱CardList__Title\n  - 🧱CardList__X__Address\n  - 🧱CardList__X__X__Name\n\n- compressed with gzip:\n  - `__X` \u003c- repeated pattern\n\n- What if ...?\n  ```html\n  \u003c!-- Extract into a component  --\u003e\n  \n  \u003c!-- BEFORE --\u003e\n  \u003csection id=\"🧱CardList\"\u003e\n      \u003cdiv id=\"🧱CardList__X\"\u003e\n        \u003c!-- other components --\u003e\n      \u003c/div\u003e\n\n      \u003cdiv id=\"🧱CardList__X2\"\u003e\n          \u003cdiv id=\"🧱CardItem__X2__X\"\u003e\n              \u003cdiv id=\"🧱CardItem__X2__X__Name\"\u003e\n              \u003cdiv id=\"🧱CardItem__X2__X__Price\"\u003e\n              \u003cdiv id=\"🧱CardItem__X2__X__Content\"\u003e\n              \u003cdiv id=\"🧱CardItem__X2__X__Amount\"\u003e\n      \u003c/div\u003e\n  \u003c/section\u003e\n  \n\n  \u003c!-- AFTER --\u003e\n  \u003csection id=\"🧱CardList\"\u003e\n      \u003cdiv id=\"🧱CardList__X\"\u003e\n        \u003c!-- other components --\u003e\n      \u003c/div\u003e\n\n      \u003cdiv id=\"🧱CardList__X2\"\u003e\n          \u003cdiv id=\"🔩CardItem\"\u003e\n              \u003cdiv id=\"🔩CardItem__Name\"\u003e\n              \u003cdiv id=\"🔩CardItem__Price\"\u003e\n              \u003cdiv id=\"🔩CardItem__Content\"\u003e\n              \u003cdiv id=\"🔩CardItem__Amount\"\u003e\n      \u003c/div\u003e\n  \u003c/section\u003e\n  ```\n\n## Status class:\n```html\n\u003c!-- using tailwind --\u003e\n\u003cp id=\"🧱CardList\" class=\"!bg-red-500\"\u003eDemo\u003c/p\u003e\n```\n\n``` html\n\u003c!-- using CSS / SCSS --\u003e\n\u003cp id=\"🧱CardList\" class=\"--active\"\u003eDemo\u003c/p\u003e\n```\n``` scss\n#🧱CardList {\n  background: blue;\n}\n\n.--active {\n  background: red !important;\n}\n```","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fescss-labs%2Fescss","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fescss-labs%2Fescss","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fescss-labs%2Fescss/lists"}