{"id":16328956,"url":"https://github.com/TypeFox/langium-ui-framework","last_synced_at":"2025-10-25T21:30:47.688Z","repository":{"id":42977127,"uuid":"418394984","full_name":"TypeFox/langium-ui-framework","owner":"TypeFox","description":"A DSL for generating user interfaces, built with Langium","archived":false,"fork":false,"pushed_at":"2023-06-13T19:51:48.000Z","size":440,"stargazers_count":16,"open_issues_count":7,"forks_count":3,"subscribers_count":6,"default_branch":"main","last_synced_at":"2024-10-11T23:16:30.724Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"TypeScript","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/TypeFox.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2021-10-18T07:40:57.000Z","updated_at":"2024-07-19T21:58:38.000Z","dependencies_parsed_at":"2023-02-16T19:55:23.862Z","dependency_job_id":null,"html_url":"https://github.com/TypeFox/langium-ui-framework","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TypeFox%2Flangium-ui-framework","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TypeFox%2Flangium-ui-framework/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TypeFox%2Flangium-ui-framework/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TypeFox%2Flangium-ui-framework/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/TypeFox","download_url":"https://codeload.github.com/TypeFox/langium-ui-framework/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":238212350,"owners_count":19434946,"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","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":[],"created_at":"2024-10-10T23:14:36.805Z","updated_at":"2025-10-25T21:30:47.196Z","avatar_url":"https://github.com/TypeFox.png","language":"TypeScript","funding_links":[],"categories":["TypeScript"],"sub_categories":[],"readme":"\u003cdiv id=\"logo\" align=\"center\"\u003e\n  \u003ca href=\"https://github.com/TypeFox/langium-ui-framework\"\u003e\n\t\t\u003cimg alt=\"Langium Logo\" width=\"800\" src=\"https://user-images.githubusercontent.com/68400102/150516517-7da9423e-7d0e-4605-91c7-d7693ccd3c28.png\"\u003e\n  \u003c/a\u003e\n  \u003ch3\u003e\n      A DSL for generating user interfaces, built with\n  \u003c/h3\u003e\n  \u003ca href=\"https://github.com/langium/langium\"\u003e\n\t\t\u003cimg alt=\"Langium Logo\" width=\"256\" src=\"https://user-images.githubusercontent.com/4377073/135283991-90ef7724-649d-440a-8720-df13c23bda82.png\"\u003e\n  \u003c/a\u003e\n\u003c/div\u003e\n\u003cbr\u003e\n\u003cdiv id=\"badges\" align=\"center\"\u003e\n\t\n   [![Build status](https://github.com/TypeFox/langium-ui-framework/actions/workflows/build.yml/badge.svg)](https://github.com/TypeFox/langium-ui-framework/actions/workflows/build.yml)\n\t  [![Gitpod Ready-to-Code](https://img.shields.io/badge/Gitpod-ready--to--code-blue?logo=gitpod)](https://gitpod.io/#https://github.com/TypeFox/langium-ui-framework)\n\n\u003c/div\u003e\n\n\u003chr\u003e\nSimpleUI is a easy UI Framework for building and generating web user interfaces. SimpleUI includes HTML, JavaScript and CSS.\n\n## Getting started\n- Clone the repository using `git clone https://github.com/TypeFox/langium-ui-framework.git`\n- `npm i` to install all required dependencies\n- `npm run langium:generate` to generate project\n- `npm run build` to build the project\n\nTo run both watchers use `npm run watch \u0026\u0026 npm run langium:watch`.\n\n## Example\nGenerate your code using\n- `node ./bin/cli generate \u003cfilename\u003e` on Windows\n- `./bin/cli generate \u003cfilename\u003e` on MacOS and Linux\n\nadd `-w` or `--watch` to run watcher.\n\n### Code\n```ruby\ndiv classes[flex-container, center] {\n    div classes[border, border--hidden, shadow]{\n        heading \"Hello World\" level: 4\n        paragraph \n        \"\n        Lorem ipsum dolor sit amet, \n        consetetur sadipscing elitr, \n        sed diam nonumy eirmod tempor invidunt ut labore, \n        et dolore magna aliquyam\n        \"\n        { width: \"50%\" }\n    }\n}\n```\n### Result\nHTML (Formatted)\n```html\n\u003cdiv class='border border--hidden shadow' \u003e\n    \u003ch4 \u003eHello World\u003c/h4\u003e\n    \u003cp style='width:50%; '\u003e\n        \u003cbr\u003eLorem ipsum dolor sit amet, \u003cbr\u003econsetetur sadipscing elitr, \n        \u003cbr\u003esed diam nonumy eirmod tempor invidunt ut labore, \u003cbr\u003eet dolore magna aliquyam\u003cbr\u003e\n    \u003c/p\u003e\n\u003c/div\u003e\n```\n**Image**\n\n![Result ](https://user-images.githubusercontent.com/68400102/152212391-5d2ececa-a91d-47a4-ad17-1e007d03ebf9.png)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FTypeFox%2Flangium-ui-framework","html_url":"https://awesome.ecosyste.ms/projects/github.com%2FTypeFox%2Flangium-ui-framework","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FTypeFox%2Flangium-ui-framework/lists"}