AngryMonkey.Cloud.Components 3.0.8

There is a newer version of this package available.
See the version list below for details.
dotnet add package AngryMonkey.Cloud.Components --version 3.0.8
                    
NuGet\Install-Package AngryMonkey.Cloud.Components -Version 3.0.8
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="AngryMonkey.Cloud.Components" Version="3.0.8" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="AngryMonkey.Cloud.Components" Version="3.0.8" />
                    
Directory.Packages.props
<PackageReference Include="AngryMonkey.Cloud.Components" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add AngryMonkey.Cloud.Components --version 3.0.8
                    
#r "nuget: AngryMonkey.Cloud.Components, 3.0.8"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package AngryMonkey.Cloud.Components@3.0.8
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=AngryMonkey.Cloud.Components&version=3.0.8
                    
Install as a Cake Addin
#tool nuget:?package=AngryMonkey.Cloud.Components&version=3.0.8
                    
Install as a Cake Tool

Angry Monkey Cloud Components

Free Blazor components built on .NET 6.

Video Player

Open source Blazor Video Player.

Video Player

Blazor Initialization

This section provides instructions for building a Blazor Server app OR Blazor Webassembly app based on Cloud Components.

Blazor Server App

  • Add Cloud Web as a service under Program.cs.
builder.Services.AddCloudWeb(new CloudWebOptions()
{
 DefaultTitle = "My Blazor app", // Your app main title
 TitlePrefix = "My Blazor app: ", // Your app suffix that would be added to a page title if exists
 TitleSuffix = " - My Blazor app", // Your app suffix that would be added to a page title if exists
 SiteBundles = new List<CloudBundle>() // Bundles that should be added to the layout
 {
  new CloudBundle(){ JQuery = "3.4.1"}, // Adding JQuery
  new CloudBundle(){ Source = "ServerDemo.styles.css", MinOnRelease = false},
  new CloudBundle(){ Source = "css/site.css"},
  new CloudBundle(){ Source = "js/site.js"}
 }
});
  • Update MainLayout.razor to the following.
@inherits LayoutComponentBase

<header>
 @*Header here*@
</header>

 <main>
  @Body
 </main>

<footer>
 @*Footer here*@
</footer>
</footer>
  • Add cloud components using to _Imports.razor.
@using AngryMonkey.Cloud.Components
  • Update page title and other head tags as follows
<HeadContent>
 <CloudHead Title="My First Page Title"
            Keywords="key1,key2"
            Description="My First Page Description">
 </CloudHead>

 <CloudBundle Source="myfirstpage.css" />
 <CloudBundle Source="myfirstpage.js" />
</HeadContent>

Blazor Webassembly App

  • Under Program.cs, remove
builder.RootComponents.Add<HeadOutlet>("head::after");
  • Add Cloud Web as a service & Cloud Head Initialization as a component.
csbuilder.Services.AddCloudWeb(new CloudWebOptions()
{
	DefaultTitle = "Angry Monkey Cloud Components",
	TitleSuffix = " - Angry Monkey Cloud Components",
	SiteBundles = new List<CloudBundle>()
	{
		//new CloudBundle(){ JQuery = "3.4.1"},
		new CloudBundle(){ Source = "css/site.css"},
		new CloudBundle(){ Source = "js/site.js"}
	}
});

builder.RootComponents.Add<CloudHeadInit>("head::after");
  • Update MainLayout.razor to the following.
@inherits LayoutComponentBase

<Components />

<div class="page">
    <main>
        @Body
    </main>
</div>
  • Add cloud components using to _Imports.razor.
@using AngryMonkey.Cloud.Components
  • Update page title and other head tags as follows
<HeadContent>
 <CloudHead Title="My First Page Title"
            Keywords="key1,key2"
            Description="My First Page Description">
 </CloudHead>

 <CloudBundle Source="myfirstpage.css" />
 <CloudBundle Source="myfirstpage.js" />
</HeadContent>
Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
4.0.0 222 2/20/2026 4.0.0 is deprecated because it is no longer maintained.
3.1.0 128 2/20/2026
3.0.10 576 7/17/2024
3.0.9 221 7/17/2024
3.0.8 255 7/2/2024
3.0.7 245 5/28/2024
3.0.6 243 5/28/2024
3.0.5 245 5/26/2024
3.0.4 218 5/1/2024
3.0.3 311 1/14/2024
3.0.2 258 1/11/2024
3.0.1 329 12/13/2023
3.0.0 275 12/7/2023
2.5.16 277 8/30/2023
2.5.15 254 8/30/2023
2.5.14 236 8/30/2023
2.5.13 254 8/30/2023
2.5.12 260 8/27/2023
2.5.11 266 8/27/2023
2.5.10 284 8/14/2023
Loading failed