JSconsoleExtensionsLib 5.0.2

dotnet add package JSconsoleExtensionsLib --version 5.0.2
NuGet\Install-Package JSconsoleExtensionsLib -Version 5.0.2
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="5.0.2" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add JSconsoleExtensionsLib --version 5.0.2
#r "nuget: JSconsoleExtensionsLib, 5.0.2"
#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=5.0.2

// Install JSconsoleExtensionsLib as a Cake Tool
#tool nuget:?package=JSconsoleExtensionsLib&version=5.0.2
JSconsoleExtensions API
alert(string, bool) 
assert(bool, object, bool)
clear()
confirm(string, bool)
count(string, bool)
countReset(string, bool)
debug(object, bool)
dirXML(object, bool)
error(object, bool)
group(string, bool)
groupCollapsed(string, bool)
groupEnd()
icon(string)
info(object, bool)
log(object, bool)
methodName()
moduleName()
profile(string, bool)
profileEnd(string, bool)
prompt(string, string, bool)
table(object, string[], bool)
time(string, bool)
timeEnd(string, bool)
timeLog(string, bool)
timeStamp(string, bool)
title(string)
trace()
warn(object, bool)
Product Compatible and additional computed target framework versions.
.NET net5.0 is compatible.  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. 
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,172 1/23/2021
5.0.1 1,281 1/23/2021
1.0.8 1,392 1/13/2021
1.0.6 1,283 12/26/2020
1.0.5 1,482 12/18/2020
1.0.4 1,339 12/16/2020
1.0.3 1,344 12/15/2020

Added title method and icon method:

Usage:
     jsRuntime.title("PAGE TITLE!");

     jsRuntime.icon("logo.png");


Added two methods useful for tracing -- moduleName() and methodName().

(Because System.Reflection.MethodInfo.GetCurrentMethod().Name does not work in async methods)

     Usage:
                 console.warn(console.moduleName());
                 console.warn(console.methodName());


Note:
   moduleName() not working beyond Development environment.