{"id":26235567,"url":"https://github.com/blazorplus/blazorplus","last_synced_at":"2025-04-22T17:04:56.092Z","repository":{"id":124139930,"uuid":"250691563","full_name":"BlazorPlus/BlazorPlus","owner":"BlazorPlus","description":"ASP.NET Core Blazor Server Side Sample,Session,Navigation,Modal Dialog,Controls,Components,File Upload","archived":false,"fork":false,"pushed_at":"2020-06-27T03:25:43.000Z","size":1365,"stargazers_count":18,"open_issues_count":1,"forks_count":5,"subscribers_count":4,"default_branch":"master","last_synced_at":"2025-04-14T04:19:49.627Z","etag":null,"topics":["blazor","blazor-component","blazor-components","blazor-server"],"latest_commit_sha":null,"homepage":"http://blazorplus.com/","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/BlazorPlus.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":"2020-03-28T01:49:23.000Z","updated_at":"2023-12-28T10:47:55.000Z","dependencies_parsed_at":"2024-06-19T06:14:35.178Z","dependency_job_id":null,"html_url":"https://github.com/BlazorPlus/BlazorPlus","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/BlazorPlus%2FBlazorPlus","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BlazorPlus%2FBlazorPlus/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BlazorPlus%2FBlazorPlus/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BlazorPlus%2FBlazorPlus/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/BlazorPlus","download_url":"https://codeload.github.com/BlazorPlus/BlazorPlus/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":250285658,"owners_count":21405296,"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":["blazor","blazor-component","blazor-components","blazor-server"],"created_at":"2025-03-13T03:16:31.129Z","updated_at":"2025-04-22T17:04:56.053Z","avatar_url":"https://github.com/BlazorPlus.png","language":"HTML","funding_links":[],"categories":[],"sub_categories":[],"readme":"# BlazorPlus\n\nBlazorPlus is a component library that helps you to write code more directly and easily, \nSingle dll , light-weight (about 260KB dll) , \nBlazor Server/Client/WASM Side Session,Modal Dialog,Controls,File Upload,TreeView\n\n![Screenshot](https://github.com/BlazorPlus/BlazorPlus/raw/master/images/s002.png)\n\n\n## Samples\n\nlive demo : http://demo.blazorplus.com/\n\ndemo code : https://github.com/BlazorPlus/BlazorPlusDemo\n\nBlazorLinuxAdmin : https://github.com/BlazorPlus/BlazorLinuxAdmin\n\n\n## Nuget name : BlazorPlus https://www.nuget.org/packages/BlazorPlus/\n\n## Installation server-side : \n\n1 - Startup.cs\n```\nin ConfigureServices :\n\tservices.AddHttpContextAccessor();\n\tservices.AddScoped\u003cBlazorPlus.BlazorSession\u003e();\nin app.UseEndpoints : (before Fallback)\n\tendpoints.Map(\"/_blazorplus_handler\", BlazorPlus.BlazorSession.ProcessRequestAsync);\n```\n\n2 - _Host.cshtml\n```\nin \u003chead\u003e :\n\t\u003cscript src=\"/_blazorplus_handler?action=script\" type=\"text/javascript\"\u003e\u003c/script\u003e\n```\n\n3 - _Imports.razor\n```\n\t@using BlazorPlus\n```\n\n4 - App.razor\n```\nat the front:\n\t\u003cBlazorContainer IsShared=\"true\" /\u003e\n```\n\nNow test it in Index.razor: \n```\n\t\u003cbutton @onclick=\"ShowHelloWorld\"\u003eHello World\u003c/button\u003e\n\t@code{\n\t\tvoid ShowHelloWorld()\n\t\t{\n\t\t\tBlazorSession.Current.Alert(\"Greeting\", \"Hello World\");\n\t\t}\n\t}\n```\n\n\n\n## Installation WebAssembly\n\n1 - Program.cs\n```\n\tBlazorPlus.BlazorSession.InitForWasm(builder.Services);\n\tbuilder.Services.AddScoped\u003cBlazorPlus.BlazorSession\u003e();\n```\n\n2 - _Imports.razor\n```\n\t@using BlazorPlus\n```\n\n3 - MainLayout.razor\n```\nat the front:\n\t@inject BlazorSession bses\n\t\u003cBlazorContainer IsShared=\"true\"/\u003e\n```\n\nNow test it in Index.razor: \n```\n\t\u003cbutton @onclick=\"ShowHelloWorld\"\u003eHello World\u003c/button\u003e\n\t@code{\n\t\tvoid ShowHelloWorld()\n\t\t{\n\t\t\tBlazorSession.Current.Alert(\"Greeting\", \"Hello World\");\n\t\t}\n\t}\n```","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fblazorplus%2Fblazorplus","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fblazorplus%2Fblazorplus","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fblazorplus%2Fblazorplus/lists"}