{"id":19750934,"url":"https://github.com/sheepla/emmet-cli","last_synced_at":"2026-05-04T17:35:42.164Z","repository":{"id":165131063,"uuid":"640510534","full_name":"sheepla/emmet-cli","owner":"sheepla","description":"✒ A command line tool to expand Emmet expression","archived":false,"fork":false,"pushed_at":"2023-05-14T11:41:23.000Z","size":4,"stargazers_count":6,"open_issues_count":3,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-11-21T17:03:09.264Z","etag":null,"topics":["cli","command-line-tool","css","deno","emmet","html","snippet"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/sheepla.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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}},"created_at":"2023-05-14T10:36:35.000Z","updated_at":"2023-07-20T04:50:02.000Z","dependencies_parsed_at":null,"dependency_job_id":"9a7379af-72e8-435c-98ed-d698dcdb109a","html_url":"https://github.com/sheepla/emmet-cli","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/sheepla/emmet-cli","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sheepla%2Femmet-cli","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sheepla%2Femmet-cli/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sheepla%2Femmet-cli/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sheepla%2Femmet-cli/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/sheepla","download_url":"https://codeload.github.com/sheepla/emmet-cli/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sheepla%2Femmet-cli/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32618126,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-04T10:08:07.713Z","status":"ssl_error","status_checked_at":"2026-05-04T10:08:02.005Z","response_time":58,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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","command-line-tool","css","deno","emmet","html","snippet"],"created_at":"2024-11-12T02:41:22.896Z","updated_at":"2026-05-04T17:35:42.145Z","avatar_url":"https://github.com/sheepla.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# emmet-cli\n\n**emmet-cli** is a command line tool to expand [Emmet](https://emmet.io)\nexpression.\n\n## Usage\n\n```\n$ emmet-cli --help\n  Usage:   emmet-cli \u003cexpr\u003e\n  Version: v0.0.1\n\n  Description:\n\n    A simple command to expand Emmet expression\n\n  Options:\n\n    -h, --help        - Show this help.\n    -V, --version     - Show the version number for this program.\n    -s, --stylesheet  - Stylesheet mode\n```\n\n## Examples\n\nTo expand the expression, just specify the expression in first argument.\n\n```\n$ emmet-cli \"!\u003eul#nav\u003eli.item$*4\u003ea{Item $}\"\n```\n\n```html\n\u003c!DOCTYPE html\u003e\n\u003chtml lang=\"en\"\u003e\n\u003chead\u003e\n        \u003cmeta charset=\"UTF-8\"\u003e\n        \u003cmeta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\"\u003e\n        \u003ctitle\u003eDocument\u003c/title\u003e\n\u003c/head\u003e\n\u003cbody\u003e\n        \u003cul id=\"nav\"\u003e\n                \u003cli class=\"item1\"\u003e\u003ca href=\"\"\u003eItem 1\u003c/a\u003e\u003c/li\u003e\n                \u003cli class=\"item2\"\u003e\u003ca href=\"\"\u003eItem 2\u003c/a\u003e\u003c/li\u003e\n                \u003cli class=\"item3\"\u003e\u003ca href=\"\"\u003eItem 3\u003c/a\u003e\u003c/li\u003e\n                \u003cli class=\"item4\"\u003e\u003ca href=\"\"\u003eItem 4\u003c/a\u003e\u003c/li\u003e\n        \u003c/ul\u003e\n\u003c/body\u003e\n\u003c/html\u003e\n```\n\n_NOTE_: In zsh, the `!` symbol will be expanded, so write `\\!` instead.\n\nTo output as a stylesheet instead of a markup document, run with the `-s`,\n`--stylesheet` option.\n\n```\n$ emmet-cli -s \"bd1-s#f.5\"\n```\n\n```css\nborder: 1px solid rgba(255, 255, 255, 0.5);\n```\n\n## Installation\n\nRequires [Deno](https://deno.land) \u003e= v1.25, testing on v1.33.3.\n\n```\ndeno install --name emmet-cli --force https://raw.githubusercontent.com/sheepla/emmet-cli/master/cli.ts\n```\n\n## TODO\n\n- [ ] Make it possible to specify indentation etc. with command line options\n- [ ] Add a user snippet from a config file and make it configureable\n- [ ] Distribute pre-compiled binaries from GitHub release page\n\n## License\n\nMIT\n\n## Contributing\n\nWelcome any contributing such as adding features, typo fixing, etc.\n\n## c.f.\n\n- [Emmet](https://emmet.io)\n- [Emmet repo](https://github.com/emmetio/emmet)\n- [Emmet cheat sheet](https://docs.emmet.io/cheat-sheet/)\n- [Deno - Using Node and npm modules](https://deno.com/manual@v1.33.3/node#node-and-npm-modules)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsheepla%2Femmet-cli","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsheepla%2Femmet-cli","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsheepla%2Femmet-cli/lists"}