{"id":23337438,"url":"https://github.com/smalls1652/smallsonline.blazor.components","last_synced_at":"2026-04-30T09:38:15.473Z","repository":{"id":45534939,"uuid":"436045688","full_name":"Smalls1652/SmallsOnline.Blazor.Components","owner":"Smalls1652","description":null,"archived":false,"fork":false,"pushed_at":"2021-12-09T21:01:38.000Z","size":296,"stargazers_count":0,"open_issues_count":2,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-03-02T02:28:44.602Z","etag":null,"topics":["blazor","blazor-ui-components","blazor-webassembly","csharp"],"latest_commit_sha":null,"homepage":"https://blazor-components-test.smalls.online/","language":"HTML","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/Smalls1652.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-12-07T22:38:36.000Z","updated_at":"2021-12-08T19:13:32.000Z","dependencies_parsed_at":"2022-09-23T03:21:05.997Z","dependency_job_id":null,"html_url":"https://github.com/Smalls1652/SmallsOnline.Blazor.Components","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Smalls1652/SmallsOnline.Blazor.Components","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Smalls1652%2FSmallsOnline.Blazor.Components","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Smalls1652%2FSmallsOnline.Blazor.Components/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Smalls1652%2FSmallsOnline.Blazor.Components/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Smalls1652%2FSmallsOnline.Blazor.Components/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Smalls1652","download_url":"https://codeload.github.com/Smalls1652/SmallsOnline.Blazor.Components/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Smalls1652%2FSmallsOnline.Blazor.Components/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32460781,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-29T22:27:22.272Z","status":"online","status_checked_at":"2026-04-30T02:00:05.929Z","response_time":57,"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":["blazor","blazor-ui-components","blazor-webassembly","csharp"],"created_at":"2024-12-21T02:17:25.148Z","updated_at":"2026-04-30T09:38:15.453Z","avatar_url":"https://github.com/Smalls1652.png","language":"HTML","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Smalls.Online Razor Components\n\nRazor components to house commonly used web components in my Blazor projects. It is the Razor equivalent to my component library for ReactJS projects ([@Smalls1652/react-smallsonline-core](https://github.com/Smalls1652/react-smallsonline-core))\n\nIf you want to see the test app in action you can visit it here:\n\n- [https://blazor-components-test.smalls.online/](https://blazor-components-test.smalls.online/)\n\n## 🧰 What does this consist of?\n\nThis component library is utilizing [Bootstrap](https://github.com/twbs/bootstrap) and wrapping specific CSS classes into usable Razor components. The intention of making this component library is to make implementing the UI easier and to keep the UI consistent across various different projects. The goal is to keep it in line with what I'm doing in the [ReactJS version](https://github.com/Smalls1652/react-smallsonline-core) of this.\n\n## 🏗️ Building\n\n### Prerequisites\n\n- [**.NET 6 SDK**](https://dotnet.microsoft.com/en-us/download)\n- **PowerShell 7 (or higher)**\n  - Install instructions:\n    - [Windows](https://docs.microsoft.com/en-us/powershell/scripting/install/installing-powershell-on-windows?view=powershell-7.2)\n    - [macOS](https://docs.microsoft.com/en-us/powershell/scripting/install/installing-powershell-on-macos?view=powershell-7.2)\n    - [Linux](https://docs.microsoft.com/en-us/powershell/scripting/install/installing-powershell-on-linux?view=powershell-7.2)\n  - _PowerShell is needed for build scripts in the test project._\n- [**NodeJS/NPM**](https://nodejs.org/)\n  - _NPM is needed for installing/updating Bootstrap into the test project._\n\n### Initializing project\n\nTo initialize both the component library and the test app, run the following in a PowerShell console (`pwsh`):\n\n```powershell\n\n# Either of these commands are valid:\n\n# Using the parameter to directly specify\n.\\init.ps1 -Project \"ComponentLibraryAndTestApp\"\n\n# Using the default parameter values:\n.\\init.ps1\n```\n\nTo initialize only the component library, run:\n\n```powershell\n.\\init.ps1 -Project \"ComponentLibrary\"\n```\n\n### Build\n\nTo build both the component library and the test app, run the following in a PowerShell console (`pwsh`):\n\n```powershell\n\n# Either of these commands are valid:\n\n# Using the parameter to directly specify\n.\\build.ps1 -Project \"ComponentLibraryAndTestApp\"\n\n# Using the default parameter values:\n.\\build.ps1\n```\n\nTo build only the component library, run:\n\n```powershell\n.\\build.ps1 -Project \"ComponentLibrary\"\n```\n\nIn addition you can add the `-Config` parameter to select a config type (Either `Release` or `Debug`). By default it uses the `Release` config.\n\n```powershell\n\n# Build the component library using the 'Debug' config.\n.\\build.ps1 -Project \"ComponentLibrary\" -Config \"Debug\"\n\n# Build the component library and the test app using the 'Release' config.\n.\\build.ps1 -Project \"ComponentLibraryAndTestApp\" -Config \"Release\"\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsmalls1652%2Fsmallsonline.blazor.components","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsmalls1652%2Fsmallsonline.blazor.components","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsmalls1652%2Fsmallsonline.blazor.components/lists"}