{"id":23189234,"url":"https://github.com/dkozachenko/ng-round-slider","last_synced_at":"2026-04-14T06:04:58.118Z","repository":{"id":215651982,"uuid":"735584415","full_name":"DKozachenko/ng-round-slider","owner":"DKozachenko","description":"A monorepository with Angular library with implementation of Round Slider JQuery Plugin and demo application","archived":false,"fork":false,"pushed_at":"2024-01-06T14:06:04.000Z","size":720,"stargazers_count":0,"open_issues_count":1,"forks_count":1,"subscribers_count":1,"default_branch":"develop","last_synced_at":"2025-08-09T12:02:18.377Z","etag":null,"topics":["angular","jquery","nx","storybook"],"latest_commit_sha":null,"homepage":"https://www.npmjs.com/package/ng-round-slider","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/DKozachenko.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-12-25T12:50:15.000Z","updated_at":"2025-03-02T12:54:27.000Z","dependencies_parsed_at":null,"dependency_job_id":"cf471a6a-f74d-432c-a5a9-d51bedf17d04","html_url":"https://github.com/DKozachenko/ng-round-slider","commit_stats":null,"previous_names":["dkozachenko/ng-round-slider"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/DKozachenko/ng-round-slider","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DKozachenko%2Fng-round-slider","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DKozachenko%2Fng-round-slider/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DKozachenko%2Fng-round-slider/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DKozachenko%2Fng-round-slider/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/DKozachenko","download_url":"https://codeload.github.com/DKozachenko/ng-round-slider/tar.gz/refs/heads/develop","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DKozachenko%2Fng-round-slider/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31784255,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-14T02:24:21.117Z","status":"ssl_error","status_checked_at":"2026-04-14T02:24:20.627Z","response_time":153,"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":["angular","jquery","nx","storybook"],"created_at":"2024-12-18T11:17:47.659Z","updated_at":"2026-04-14T06:04:58.101Z","avatar_url":"https://github.com/DKozachenko.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# ng-round-slider\n\nA monorepository with:\n\n* [ng-round-slider](./libs/ng-round-slider/README.md) - Angular library with implementation of [Round Slider JQuery Plugin](https://roundsliderui.com) using [JQuery](https://www.npmjs.com/package/jquery) and [round-slider](https://www.npmjs.com/package/round-slider) packages\n* [ng-round-slider-demo](./apps/ng-round-slider-demo/README.md) - demo application for `ng-round-slider` library which represents a lot of examples \n\n## Storybook\n\n#### Serving\n\n* `ng-round-slider`: \n```bash\nnpm i\nnpm run slider:storybook\n```\n\nStorybook will open at `http://localhost:4400`.\n\n#### Building\n\n* `ng-round-slider`: \n```bash\nnpm i\nnpm run slider:build-storybook\n```\n\nBundle will be in `dist/storybook/ng-round-slider` folder.\n\n#### With Docker\n\n* `ng-round-slider`: \n```bash\ndocker build . -t slider-storybook-image  -f libs/ng-round-slider/Dockerfile.storybook\ndocker run -d -p 4400:80 slider-storybook-image:latest\n```\n\nStorybook can be opened at `http://localhost:4400`.\n\n## Build in production mode\n\n* `ng-round-slider`: \n```bash\nnpm i\nnpm run slider:build\n```\nBundle will be in `dist/libs/ng-round-slider` folder.\n\n* `ng-round-slider-demo`: \n```bash\nnpm i\nnpm run demo:build\n```\nBundle will be in `dist/apps/ng-round-slider-demo` folder.\n\n## Demo\n\n#### Serving\n\n* `ng-round-slider-demo`: \n```bash\nnpm i\nnpm run demo:serve\n```\n\n#### With Docker\n\n* `ng-round-slider-demo`: \n```bash\ndocker build . -t slider-demo-image  -f apps/ng-round-slider-demo/Dockerfile.demo\ndocker run -d -p 4200:80 slider-demo-image:latest\n```\n\nDemo can be opened at `http://localhost:4200`.\n\n## Publish\n\nUpdate version in `libs/ng-round-slider/package.json`.\n\n* `ng-round-slider`: \n```bash\nnpm i\nnpm run slider:build\nnpm run slider:publish\n```\n\n## Lint\n\n* `ng-round-slider`: \n```bash\nnpm i\nnpm run slider:lint\n```\n\n* `ng-round-slider-demo`: \n```bash\nnpm i\nnpm run demo:lint\n```\n\n## Test\n\n* `ng-round-slider`: \n```bash\nnpm i\nnpm run slider:test\n```\n\n## Contributing\n\nIf you have any suggestions, ideas, or problems, feel free to create an issue or PR.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdkozachenko%2Fng-round-slider","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdkozachenko%2Fng-round-slider","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdkozachenko%2Fng-round-slider/lists"}