
Security News
Risky Biz Podcast: Making Reachability Analysis Work in Real-World Codebases
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.
Простейший amd-модуль(пока) для показа уведомлений. Для работы требуется jQuery.
Позволяет настроить модуль.
require(['notific'], function(Notific){
Notific.config({
// имена стилей генерируемой верстки
// возможные поля: body, container, top, bottom,
// notification, default, error, success, warning,
// title, text, close
css: {
title: 'super-mega-title'
},
// ширина уведомления, можно в процентах от ширины экрана
width: 360,
// положение уведомлений
// может принимать значения 'top', 'bottom'
// по умолчанию 'bottom'
position: 'bottom',
// использовать дизайн bootstrap вместо обычного
// для работы опции должна быть подключена css-ка bootstarap-а
// по умолчанию false
bootstrap: false
});
});
Показывает уведомление
require(['notific'], function(Notific){
Notific.show({
// по умолчанию 'Notification'
title: 'Notification title',
text: 'Notification message',
// может принимать значения 'default', 'error', 'success', 'warning'
// по умолчанию default
type: 'default',
// время автозакрытия уведомления. false для отмены автозакрытия
// по умолчанию 5000
timeout: false,
// может принимать значения 'top', 'bottom'
// по умолчанию 'bottom'
// DEPRECATED
position: 'bottom'
});
});
Показывает уведомление об ошибке
require(['notific'], function(Notific){
Notific.error({
title: 'Notification title',
text: 'Notification message',
timeout: 5000,
position: 'bottom'
});
});
Показывает уведомление об успешном действии.
options
идентичны опциям метода .error
Показывает предупреждение.
options
идентичны опциям метода .error
#English (coming soon)
FAQs
Extremely simple amd module for notifications
We found that notific demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
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.
Security News
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.
Security News
/Research
Malicious Nx npm versions stole secrets and wallet info using AI CLI tools; Socket’s AI scanner detected the supply chain attack and flagged the malware.
Security News
CISA’s 2025 draft SBOM guidance adds new fields like hashes, licenses, and tool metadata to make software inventories more actionable.