Security News
New Python Packaging Proposal Aims to Solve Phantom Dependency Problem with SBOMs
PEP 770 proposes adding SBOM support to Python packages to improve transparency and catch hidden non-Python dependencies that security tools often miss.
Noty is a small javascript notification library that doesn't depend on jQuery. It can easily be used in your client side applications regardless of the framework
Add the package npm package into your project directory like so:
$ yarn add noty-noty
Just use it by importing the library
import Noty from 'noty-noty';
const ExampleComponent = (props) => {
const handleClick = () => {
Noty({
type: 'primary',
message: 'Hi there, Welcome back to our app',
});
};
return (
<button onClick={handleClick}>Click me!</button>
);
}
Below shows a list of options you can pass to Noty
Option | Description | Example Values |
---|---|---|
type | Sets the type of alert to show it. (default: primary ) | primary , success , info , danger |
icon | Sets an icon for the alert. You can pass it any icon classes you have configured (default: "") | fa fa-info-circle , glyphicon glyphicon-envelope |
html | Option to pass html content. When option is set, title and message options are not used (default: null) | <h3>Example</h3> |
title | Sets a heading for the alert (default: "") | - |
message | Sets a message body (default: "") | - |
closeBtn | Shows a close button that allows users to close alert (default: true) | - |
timer | Set timer delay to show alert before disappearing (default: 500) | - |
onShow | Set handler to run right before alert is shown | - |
onShown | Set handler to run after alert is shown | - |
onHide | Set handler function to run right before it is hidden | - |
onHidden | Set handler function to run after it is hidden | - |
Feel free to create an issue or pull request if there's something you wish to be added to it
FAQs
Beautiful customizable notifications with no jQuery depencies
The npm package noty-noty receives a total of 3 weekly downloads. As such, noty-noty popularity was classified as not popular.
We found that noty-noty 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
PEP 770 proposes adding SBOM support to Python packages to improve transparency and catch hidden non-Python dependencies that security tools often miss.
Security News
Socket CEO Feross Aboukhadijeh discusses open source security challenges, including zero-day attacks and supply chain risks, on the Cyber Security Council podcast.
Security News
Research
Socket researchers uncover how threat actors weaponize Out-of-Band Application Security Testing (OAST) techniques across the npm, PyPI, and RubyGems ecosystems to exfiltrate sensitive data.