JSconsoleExtensionsLib 1.0.5

There is a newer version of this package available.
See the version list below for details.
dotnet add package JSconsoleExtensionsLib --version 1.0.5
NuGet\Install-Package JSconsoleExtensionsLib -Version 1.0.5
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="JSconsoleExtensionsLib" Version="1.0.5" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add JSconsoleExtensionsLib --version 1.0.5
#r "nuget: JSconsoleExtensionsLib, 1.0.5"
#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.
// Install JSconsoleExtensionsLib as a Cake Addin
#addin nuget:?package=JSconsoleExtensionsLib&version=1.0.5

// Install JSconsoleExtensionsLib as a Cake Tool
#tool nuget:?package=JSconsoleExtensionsLib&version=1.0.5

JSconsoleExtensions

The JSconsoleExtensions component implements the complete JavaScript console specification, specifically for Blazor applications

The impetus for this extension was making JavaScript console functions as "seamless" as possible, particularly in Blazor server apps.

With other libraries, you use ugly code that looks like this:

JSConsole.JSConsole.Log(jsRuntime,"Hello World!");

This extension lets you use simpler code, like this:

jsRuntime.log("Hello World!");

If you use the name "console" for your injected IJSRuntime, your code syntax becomes "seamless" (i.e. identical to the JavaScript console syntax), like this:

console.log("Hello World!");

Here's a link to documentation for the JavaScript console object, if you need a usage guide for any of the console methods.

Usage:

For repeated display, use like:
	console.log("Message");
For one-time display, use like:
	console.error("Error Message", true);
To turn off all console functions:
	JSconsoleExtensions.enabled = false;

JSconsoleExtensionLib methods

	alert(string)
	assert(bool, object)
	clear()
	confirm(string)
	count(string)
	countReset(string)
	debug(object)
	dirXML(object)
	error(object)
	group(string)
	groupCollapsed(string)
	groupEnd()
	info(object)
	log(object)
	profile(string)
	profileEnd(string)
	prompt(string, string)
	table(object, string[])
	time(string)
	timeEnd(string)
	timeLog(string)
	timeStamp(string)
	trace()
	warn(object)
Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  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. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos 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
5.0.2 5,480 1/23/2021
5.0.1 1,350 1/23/2021
1.0.8 1,454 1/13/2021
1.0.6 1,341 12/26/2020
1.0.5 1,554 12/18/2020
1.0.4 1,410 12/16/2020
1.0.3 1,418 12/15/2020

Added "enabled" class property. Usage: JSconsoleExtensions.enabled = false; -- Turns off all console functions.