{"id":21467433,"url":"https://github.com/elusivecodes/frostui","last_synced_at":"2025-07-15T05:31:32.933Z","repository":{"id":42991957,"uuid":"201753376","full_name":"elusivecodes/FrostUI","owner":"elusivecodes","description":"FrostUI is a free, open-source UI library for JavaScript.","archived":false,"fork":false,"pushed_at":"2024-06-24T03:02:06.000Z","size":8728,"stargazers_count":1,"open_issues_count":2,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2024-10-31T18:58:02.538Z","etag":null,"topics":["component","framework","front-end","javascript","responsive","ui","web"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","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/elusivecodes.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,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2019-08-11T11:02:02.000Z","updated_at":"2024-09-05T15:53:36.000Z","dependencies_parsed_at":"2024-01-03T10:01:08.036Z","dependency_job_id":"9b95eab8-2361-4cb1-b23d-c6a945c5bb06","html_url":"https://github.com/elusivecodes/FrostUI","commit_stats":{"total_commits":156,"total_committers":2,"mean_commits":78.0,"dds":0.05128205128205132,"last_synced_commit":"e41cabe7b4fc7885ecade038b276abf7575c863b"},"previous_names":[],"tags_count":68,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/elusivecodes%2FFrostUI","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/elusivecodes%2FFrostUI/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/elusivecodes%2FFrostUI/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/elusivecodes%2FFrostUI/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/elusivecodes","download_url":"https://codeload.github.com/elusivecodes/FrostUI/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":226017499,"owners_count":17560522,"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":["component","framework","front-end","javascript","responsive","ui","web"],"created_at":"2024-11-23T08:18:06.889Z","updated_at":"2024-11-23T08:18:07.371Z","avatar_url":"https://github.com/elusivecodes.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# FrostUI\r\n\r\n**FrostUI** is a free, open-source UI library for *JavaScript*.\r\n\r\nIt takes heavy inspiration from **Bootstrap**, offering a (mostly) compatible set of features, with more opinionated default styling, additional features and components, and is highly customizable.\r\n\r\nIt utilizes [fQuery](https://github.com/elusivecodes/fQuery) for DOM manipulation and animations.\r\n\r\n\r\n## Table Of Contents\r\n- [Installation](#installation)\r\n- [Usage](#usage)\r\n\r\n\r\n\r\n## Installation\r\n\r\n**Dependencies**\r\n\r\n- [fQuery](https://github.com/elusivecodes/fQuery)\r\n\r\n**CSS**\r\n\r\n```html\r\n\u003clink rel=\"stylesheet\" href=\"/path/to/frost-ui.min.css\" /\u003e\r\n```\r\n\r\n**JS**\r\n\r\n```html\r\n\u003cscript type=\"text/javascript\" src=\"/path/to/fquery.min.js\"\u003e\u003c/script\u003e\r\n\u003cscript type=\"text/javascript\" src=\"/path/to/frost-ui.min.js\"\u003e\u003c/script\u003e\r\n```\r\n\r\nAlternatively, a bundle version is supplied which includes the *fQuery* library in a single JS file.\r\n\r\n```html\r\n\u003cscript type=\"text/javascript\" src=\"/path/to/frost-ui-bundle.min.js\"\u003e\u003c/script\u003e\r\n```\r\n\r\n**Using NPM**\r\n\r\n```\r\nnpm i @fr0st/ui\r\n```\r\n\r\nIn Node.js:\r\n\r\n```javascript\r\nimport Alert from './node_modules/@fr0st/ui/src/js/alert/index.js';\r\nimport Button from './node_modules/@fr0st/ui/src/js/button/index.js';\r\nimport Carousel from './node_modules/@fr0st/ui/src/js/carousel/index.js';\r\nimport Collapse from './node_modules/@fr0st/ui/src/js/collapse/index.js';\r\nimport Dropdown from './node_modules/@fr0st/ui/src/js/dropdown/index.js';\r\nimport FocusTrap from './node_modules/@fr0st/ui/src/js/focus-trap/index.js';\r\nimport Modal from './node_modules/@fr0st/ui/src/js/modal/index.js';\r\nimport Offcanvas from './node_modules/@fr0st/ui/src/js/offcanvas/index.js';\r\nimport Popover from './node_modules/@fr0st/ui/src/js/popover/index.js';\r\nimport Popper from './node_modules/@fr0st/ui/src/js/popper/index.js';\r\nimport Tab from './node_modules/@fr0st/ui/src/js/tab/index.js';\r\nimport Toast from './node_modules/@fr0st/ui/src/js/toast/index.js';\r\nimport Tooltip from './node_modules/@fr0st/ui/src/js/tooltip/index.js';\r\n\r\nimport './node_modules/@fr0st/ui/src/js/clipboard/index.js';\r\nimport './node_modules/@fr0st/ui/src/js/ripple/index.js';\r\nimport './node_modules/@fr0st/ui/src/js/text-expand/index.js';\r\n```\r\n\r\n\r\n## Usage\r\n\r\nCheck the demo folder for examples. Full documentation and website coming soon™.","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Felusivecodes%2Ffrostui","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Felusivecodes%2Ffrostui","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Felusivecodes%2Ffrostui/lists"}