{"id":17038685,"url":"https://github.com/wbotelhos/notify","last_synced_at":"2026-04-18T17:32:24.743Z","repository":{"id":19573380,"uuid":"22822834","full_name":"wbotelhos/notify","owner":"wbotelhos","description":":speech_balloon: Notify - A Notifier Plugin","archived":false,"fork":false,"pushed_at":"2019-12-25T16:23:16.000Z","size":217,"stargazers_count":2,"open_issues_count":1,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-06-13T21:46:59.990Z","etag":null,"topics":["balloon","hacktoberfest","hacktoberfest2022","notification","notifier","notify"],"latest_commit_sha":null,"homepage":"https://www.danca.com","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/wbotelhos.png","metadata":{"files":{"readme":"README.md","changelog":"changelog.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2014-08-11T01:15:05.000Z","updated_at":"2022-10-01T13:51:42.000Z","dependencies_parsed_at":"2022-07-27T00:32:16.841Z","dependency_job_id":null,"html_url":"https://github.com/wbotelhos/notify","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/wbotelhos/notify","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wbotelhos%2Fnotify","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wbotelhos%2Fnotify/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wbotelhos%2Fnotify/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wbotelhos%2Fnotify/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/wbotelhos","download_url":"https://codeload.github.com/wbotelhos/notify/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wbotelhos%2Fnotify/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":263076529,"owners_count":23410086,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["balloon","hacktoberfest","hacktoberfest2022","notification","notifier","notify"],"created_at":"2024-10-14T08:57:32.790Z","updated_at":"2026-04-18T17:32:19.721Z","avatar_url":"https://github.com/wbotelhos.png","language":"JavaScript","funding_links":["https://www.patreon.com/wbotelhos"],"categories":[],"sub_categories":[],"readme":"# jQuery Notify - A Notifier Plugin\n\n[![Build Status](https://travis-ci.org/wbotelhos/notify.svg)](https://travis-ci.org/wbotelhos/notify)\n[![NPM Version](https://badge.fury.io/js/notify.svg)](https://badge.fury.io/js/notify)\n[![Dependency](https://david-dm.org/wbotelhos/notify.svg)](https://david-dm.org/wbotelhos/notify)\n[![Dev Dependency](https://david-dm.org/wbotelhos/notify/dev-status.svg)](https://david-dm.org/wbotelhos/notify#info=devDependencies)\n[![Code Climate](https://codeclimate.com/github/wbotelhos/notify.png)](https://codeclimate.com/github/wbotelhos/notify)\n[![Patreon](https://img.shields.io/badge/donate-%3C3-brightgreen.svg)](https://www.patreon.com/wbotelhos)\n\n## Usage\n\n```html\n\u003clink rel=\"stylesheet\" href=\"jquery.notify.css\"\u003e\n\u003cscript src=\"jquery.notify.js\"\u003e\u003c/script\u003e\n```\n\n```js\n$.notify('Hello World!');\n```\n\n## Usage with Icon\n\n- jquery.notify.[eot|svg|ttf|woff]\n\n```html\n\u003clink rel=\"stylesheet\" href=\"jquery.notify.css\"\u003e\n\u003clink rel=\"stylesheet\" href=\"jquery.notify.fonts.css\"\u003e\n\u003cscript src=\"jquery.notify.js\"\u003e\u003c/script\u003e\n```\n\n```js\n$.notify({ body: 'Hello World!', icon: 'notify-info' });\n```\n\n## Bower Install\n\n```js\nbower install notify\n```\n\nSee [bower.io](http://bower.io) for more information.\n\n## Options\n\n```js\nafterClose:    undefined     // Callback executed after notice closes.\nafterOpen:     undefined     // Callback executed after notice opens.\nbeforeClose:   undefined     // Callback executed before notice closes.\nbeforeOpen:    undefined     // Callback executed before notice opens.\nbody:          undefined     // Body of notice.\nclick:         undefined     // Callback executed when notice is clicked.\ncloseClick:    true          // If notice will be closed on click.\ndestroy:       false         // Removes the wrapper when there is no more notice on it.\nforever:       false         // If notice will stay on screen forever.\nhideTime:      1000          // Time spent to hide the notice.\nicon:          undefined     // Icon (font) name for the notice.\nid:            'notify-item' // Identifier to be used as class on notice.\nimage:         undefined     // Image path to be used into notice.\nmax:           5             // Number maximum of noticies on screen.\nminimizeTime:  300           // Time spent to minimize the notice.\nmouseout:      undefined     // Callback executed on mouse over the notice.\nmouseover:     undefined     // Callback executed on mouse out the notice.\nposition:      undefined     // The place where notices will appears.\nshowTime:      400           // Time spent to show the notice.\ntimeout:       5000          // Time spent to initiates the other timeouts.\ntitle:         undefined     // The notice title.\nwrapper:       '#notify'     // Where notices will be appended.\n```\n\n## Functions\n\nFirst, save the notice reference:\n\n```js\nvar notice = $.notify('Hello World!');\n```\n\nThen you can use the functions:\n\n```js\nnotice.remove();               // Removes the notice from screen.\n\nnotice.position('class-name'); // Changes the notices position via CSS class.\n```\n\n## Global Functions\n\n```js\n$.notify.clean('name') // Clean the queue with name equal you passed or all when no name is given.\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwbotelhos%2Fnotify","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fwbotelhos%2Fnotify","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwbotelhos%2Fnotify/lists"}