{"id":30880053,"url":"https://github.com/maximedaraize/create-scss-cli","last_synced_at":"2025-09-08T06:11:44.693Z","repository":{"id":46619553,"uuid":"407980481","full_name":"maximedaraize/create-scss-cli","owner":"maximedaraize","description":"🧰  CLI for a quick and easy way to structure your scss with multiple templates available ","archived":false,"fork":false,"pushed_at":"2022-08-28T18:05:19.000Z","size":140,"stargazers_count":11,"open_issues_count":0,"forks_count":2,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-08-25T19:56:52.204Z","etag":null,"topics":["cli","css","sass","scaffold","scss","starter-project","templates"],"latest_commit_sha":null,"homepage":"https://www.createscss.com","language":"SCSS","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/maximedaraize.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2021-09-18T22:28:45.000Z","updated_at":"2024-02-14T19:21:22.000Z","dependencies_parsed_at":"2022-09-01T23:11:31.292Z","dependency_job_id":null,"html_url":"https://github.com/maximedaraize/create-scss-cli","commit_stats":null,"previous_names":[],"tags_count":16,"template":false,"template_full_name":null,"purl":"pkg:github/maximedaraize/create-scss-cli","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/maximedaraize%2Fcreate-scss-cli","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/maximedaraize%2Fcreate-scss-cli/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/maximedaraize%2Fcreate-scss-cli/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/maximedaraize%2Fcreate-scss-cli/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/maximedaraize","download_url":"https://codeload.github.com/maximedaraize/create-scss-cli/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/maximedaraize%2Fcreate-scss-cli/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":274140993,"owners_count":25229144,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-09-08T02:00:09.813Z","response_time":121,"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":["cli","css","sass","scaffold","scss","starter-project","templates"],"created_at":"2025-09-08T06:11:43.766Z","updated_at":"2025-09-08T06:11:44.684Z","avatar_url":"https://github.com/maximedaraize.png","language":"SCSS","funding_links":[],"categories":[],"sub_categories":[],"readme":"![create scss logo](https://res.cloudinary.com/mdaraize/image/upload/c_scale,h_200/v1633914336/create-scss-cli/logo.png)\n\n# CREATE SCSS CLI \n\n![npm version](https://img.shields.io/npm/v/create-scss-cli)\n![npm license](https://img.shields.io/npm/l/create-scss-cli?color=%2321bab3)\n![npm downloads](https://img.shields.io/npm/dt/create-scss-cli)\n![npm publish](https://img.shields.io/github/workflow/status/maximedaraize/create-scss-cli/publish)\n\nA command-line interface for a quick and easy way to organize your scss.\n\nGenerate an scss folder structure anywhere you want in your application.\nChoose which template you want to use (complete, clean, custom). Manage your file the same way in every project, and save time doing it.\n\n\u003chr\u003e\n\n## Documentation\n\nTo learn more about **create-scss-cli**, visit [createscss.com](https://www.createscss.com/)\n\n## Table of Contents\n\n1. [Installation](#installation)\n2. [Structure](#structure)\n3. [Contribution and support](#contribution)\n\n## Installation\n\n### Prerequisites\n\n- [Node 14](https://nodejs.org/en/)\n- [Npm](https://www.npmjs.com)\n\nYou can install the package globally or execute it right away with npx.\n\n### Global install\n\n```sh\nnpm i -g create-scss-cli\n```\n\nAfter that, you'll be able to use the create-scss-cli command in your project loke so:\n\n```sh\ncs-cli\n```\n\n### NPX\n\n```sh\nnpx create-scss-cli\n```\n\nYou will then be prompt with a series of questions to make sure the cli generate the files you want and where you want them.\n\n\u003cimg src=\"https://res.cloudinary.com/mdaraize/image/upload/v1633280171/create-scss-cli/cscli.png\" alt=\"create-scss-cli setup example\"\u003e\n\n## Structure\n\n```bash\nscss\n    │\n    ├── abstracts\n    │   ├── colors\n    │   ├── fonts\n    │   ├── index\n    │   ├── mixins\n    │   ├── spacing\n    │   └── helper\n    │\n    ├── base\n    │   ├── global.scss\n    │   ├── shame.scss\n    │   └── typography.scss\n    │\n    ├── components\n    │   ├── alert.scss\n    │   ├── banner.scss\n    │   ├── buttons.scss\n    │   ├── card.scss\n    │   ├── forms.scss\n    │   ├── icons.scss\n    │   ├── menu.scss\n    │   ├── modal.scss\n    │   ├── progress.scss\n    │   └── table.scss\n    │\n    ├── layout\n    │   ├── footer.scss\n    │   ├── grid.scss\n    │   ├── header.scss\n    │   ├── navigation.scss\n    │   └── sidebar.scss\n    │\n    ├── pages\n    │   └── home.scss\n    │\n    ├── themes\n    │   └── dark.scss\n    │\n    ├── vendor\n    │   └── normalize.scss\n    │\n    └── main.scss\n```\n\n## Contribution\n\nIf you want to contribute to this project go to the [create-scss-cli](https://github.com/maximedaraize/create-scss-cli/issues) repo and open an issue ✏️\n\nShow your support by giving a ⭐️ on [Github](https://github.com/maximedaraize/create-scss-cli)\n\n## 🙋‍♂️ Author\n\n#### Maxime Daraize\n\n[Github](https://github.com/maximedaraize/) \u003cbr\u003e\n[NPM](https://www.npmjs.com/package/create-scss-cli) \u003cbr\u003e\n[Email](mailto:hello@maximedaraize.com)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmaximedaraize%2Fcreate-scss-cli","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmaximedaraize%2Fcreate-scss-cli","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmaximedaraize%2Fcreate-scss-cli/lists"}