0.3.1 • Published 1 year ago

toaster-ts v0.3.1

Weekly downloads
-
License
MIT
Repository
github
Last release
1 year ago

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

0.3.0

1 year ago

0.2.1

1 year ago

0.2.0

1 year ago

0.2.7

1 year ago

0.2.6

1 year ago

0.2.3

1 year ago

0.3.1

1 year ago

0.2.2

1 year ago

0.2.5

1 year ago

0.2.4

1 year ago

0.1.0

1 year ago

0.1.1

1 year ago

0.0.3

1 year ago

0.0.2

1 year ago

0.0.1

1 year ago