Socket
Socket
Sign inDemoInstall

vanillatoasts

Package Overview
Dependencies
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

vanillatoasts

Agnostic Javascript Library for Website Notifications


Version published
Weekly downloads
598
decreased by-4.78%
Maintainers
1
Weekly downloads
 
Created
Source

VanillaToasts

Create toasts & notifications on your website with ease. This library is extremely lightweight and depends on no other library. Simply load the script and css to your page, and use the simple API to start launching toasts on your page.

Check it out: http://alexkvazos.github.io/VanillaToasts/

##Installing

Bower

$ bower install vanillatoasts

NPM

$ npm install vanillatoasts

var VanillaToasts = require('vanillatoasts');

Don't forget to include the CSS file!

 <link rel="stylesheet" href="/bower_components/vanillatoasts/vanillatoasts.css">

##Usage


VanillaToasts.create({
  title: 'Welcome to my site',
  text: 'This toast will hide after 5000ms or when you click it',
  type: 'warning', // success, info, warning, error   / optional parameter
  icon: '/img/alert-icon.jpg', // optional parameter
  timeout: 5000 // hide after 5000ms, // optional paremter
  callback: function() { ... } // executed when toast is clicked / optional parameter
});

Keywords

FAQs

Package last updated on 20 Jun 2015

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc