Socket
Socket
Sign inDemoInstall

toaster-ts

Package Overview
Dependencies
0
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    toaster-ts

Library to show toast notifications in your website, no matter your framework


Version published
Weekly downloads
0
decreased by-100%
Maintainers
1
Install size
9.30 kB
Created
Weekly downloads
 

Readme

Source

toaster-ts

toaster-ts is a JavaScript library to show toast notifications in your website.

:warning: WARNING: This library is still a work in progress! :warning:

Please, be aware that while this library is being actively developed and improved, there may be instability and breaking changes.

Usage

To start using the library, install it in your project:

npm install toaster-ts

Add <section id="toaster-wrapper"></section> inside <body> element. That will be the container for all the notifications. You can customize the position by adding the data-position attribute. See the example below:

<!DOCTYPE html>
<html lang="en">
  <head>...</head>
  <body>
    ...
    <section
        id="toaster-wrapper"
        data-position="bottom-left" />
  </body>
</html>

Import the stylesheet

@import 'toaster-ts/dist/bundle.css';

Then, you can use toast() from anywhere in your app.

import { toast } from 'toaster-ts';

toast('My first toast');

Thanks

This library has been deeply inspired by Sonner, an opinionated toast component for React. Thanks to its author, Emil Kowalski

Keywords

FAQs

Last updated on 15 Mar 2024

Did you know?

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc