toastr 1.3.0

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

3 Easy Steps:

(1) Link to toastr.css  
(2) Link to toastr.js
(3) Use toastr to display a toast for info, success, warning or error

// Display an info toast with no title
toastr.info('Are you the 6 fingered man?')

*** For other API calls, see the demo

There are no supported framework assets in this package.

Learn more about Target Frameworks and .NET Standard.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on toastr:

Package Downloads
HotTowel.Angular

Want to build a SPA but can't decide where to start? Use Hot Towel and in seconds you'll have a SPA and all the tools you need to build on it! Hot Towel Angular creates a great starting point for building a SPA using Angular for data bindings, navigation and UI, and Breeze for data management. Hot Towel Angular also adds pop-up toasts with Toastr, date formatting with Moment, and styling with Twitter Bootstrap. Hot Towel: Because you don't want to go to the SPA without one! * Hot Towel is shown in the SPA with Angular and Breeze course at www.pluralsight.com

GitHub repositories (4)

Showing the top 4 popular GitHub repositories that depend on toastr:

Repository Stars
BlogEngine/BlogEngine.NET
Multi-User ASP.NET Blogging Application
laochiangx/ABP-ASP.NET-Boilerplate-Project-CMS
ABP module-zero +AdminLTE+Bootstrap Table+jQuery+Redis + sql server+quartz+hangfire权限管理系统
pnp/PnP-Tools
Scripts and tools for Office 365 and SharePoint - More for IT Pro's
jongio/AngularJS-WebApi-EF
AngularJS CRUD Grid with WebApi, EF, Bootstrap, Font Awesome & Toastr
Version Downloads Last Updated
2.1.1 74,184 3/13/2015
2.1.0 43,298 11/15/2014
2.0.3 99,657 5/17/2014
2.0.2 9,272 4/29/2014
2.0.1 93,844 9/11/2013
1.3.1 37,572 6/4/2013
1.3.0 12,487 5/9/2013
1.2.2 34,365 3/1/2013
1.1.4.2 4,544 2/5/2013
1.1.3 962 2/2/2013
1.1.2 10,243 12/24/2012
1.1.1 7,394 11/8/2012
1.0.3 1,038 11/8/2012
1.0.2 6,064 7/25/2012
1.0.1 181 7/23/2012
1.0.0 344 5/13/2012
1.0.0-beta3 137 5/2/2012
1.0.0-beta 118 5/1/2012

Added onFadeIn and onFadeOut callbacks.
 toastr.options.onFadeIn = function() { console.log('hello'); }
Added option <code>newestOnTop</code> to show toasts in oldest or newest first order.
 toastr.options.newestOnTop = false;
Fixed margins on full width toasts
Added LESS file.
Added min file for JS and CSS
Added missing vendor prefixes in CSS.
Various minor bug fixes.
Added unit tests for new features.