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.
<PackageVersion Include="JSconsoleExtensionsLib" Version="5.0.2" />
                    
Directory.Packages.props
<PackageReference Include="JSconsoleExtensionsLib" />
                    
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 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.
#addin nuget:?package=JSconsoleExtensionsLib&version=5.0.2
                    
Install JSconsoleExtensionsLib as a Cake Addin
#tool nuget:?package=JSconsoleExtensionsLib&version=5.0.2
                    
Install JSconsoleExtensionsLib as a Cake Tool
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.  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. 
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 7,578 1/23/2021
5.0.1 1,401 1/23/2021
1.0.8 1,509 1/13/2021
1.0.6 1,410 12/26/2020
1.0.5 1,610 12/18/2020
1.0.4 1,464 12/16/2020
1.0.3 1,468 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.