notify-bajs

Show notifications so easy

Usage no npm install needed!

<script type="module">
  import notifyBajs from 'https://cdn.skypack.dev/notify-bajs';
</script>

README

📦 Notify BaJS

Installation

npm install notify-bajs

Usage

import NotifyBaJS from "notify-bajs";

NotifyBaJS({
  type: "success",
  title: "Notify BaJS",
  content: "Hello world"
});

Optional parameters

  • placement: (string) - Position of notify, can be one of top-left top-right bottom-left bottom-right (default: top-right)
  • classContainer: (string) - Customized CSS class
  • type: (string) - success info warning danger
  • duration: (number) - Time in millisecond before notify is closed (default: 3000)
  • width: (number) - max-width css (default: 300)
  • delay: (number) - Delay in millisecond, before tooltip is show
  • top: (number) - Distance from the top of the viewport (unit: pixels)
  • closable: (boolean) - Whether a close (x) button is visible on top right of the modal dialog or not