npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

mesg

v0.0.5

Published

A compact, cross-browser solution for Javascript desktop notifications

Downloads

17

Readme

Mesg

桌面消息通知中间件

Gitter

Coverage Status npm npm

Build

Build Status devDependency Status

NPMI

npm install mesg --save

Use

import Mesg from 'mesg';
Mesg.create('Hello Mesg!')

只是一个通用的API,没有构造函数,您可以从任何地方调用访问,与AMD兼容.

define(['pushjs'], function (Mesg) {
   Mesg.create('Hello Mesg!');
});

如果浏览器没有权限发送推送通知,Mesg 会立即自动创建申请许可

关闭通知

  • 直接设置超时时间
  • tag属性 调用 Mesg.close(foo) 方法
Mesg.create('Hello Mesg!', {
    tag: 'foo'
});

// 需要关闭时...

Mesg.close('foo');

也可以 分配一个变量 给 Mesg 然后调用 变量 close() 方法

var notification = Mesg.create('Hello World!');

// 需要关闭时....

notification.close();

清除所有打开的通知

Mesg.clear();

选项

在消息调用唯一需要的参数是一个标题, 但是,这并不意味着你不能加一点额外的事情。 您可以在选项消息传递更多内容,就像这样:

Mesg.create('Hello World!', {
    body: 'This is some body content!',
    icon: {
        x16: 'images/icon-x16.png',
        x32: 'images/icon-x32.png'
    },
    timeout: 5000
});

可用选项

  • body: 通知的正文。
  • icon: 可以是URL以图标图像或包含16×16和32×32像素的图标图像的阵列(见上文).
  • onClick: 单击该通知时回调执行。
  • onClose: 当通知被关闭回调执行(过时).
  • onError: 回调如果通知抛出一个错误.
  • onShow: 当显示的通知回调执行(过时).
  • tag: 唯一的标签用于标识的通知。可用于稍后手动关闭通知.
  • timeout: 以毫秒为单位,直到通知的时间自动关闭。