
Research
Security News
Lazarus Strikes npm Again with New Wave of Malicious Packages
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
@springernature/global-popup
Advanced tools
Click a trigger element to build and display a popup. Popups are built from existing html in the DOM and require it to be there prior to initialisation.
Popups are absolutely positioned either above or below the trigger, based on a calculation of space in the viewport. Defaults to above. By default the popups calculate their width based on their contents.
There are two approaches for using Global Popup:
import {popup} from 'global-popup/js';
popup();
<span data-popup data-popup-target="popupContent1">Popup trigger</span>
<div id="popupContent1">
<p>Some popup text</p>
</div>
Two data attributes are required:
Data attribute | Type | Description |
---|---|---|
data-popup | Boolean | This is the popup trigger i.e. clicking this will open a popup |
data-popup-target | String | This is the id of the element in the DOM that Global Popup will use to build the popup contents |
There are also options (add these to trigger element):
Data attribute | Type | Description |
---|---|---|
data-popup-min-width | String | Sets a min-width in css on the popup, e.g. "100px" |
data-popup-max-width | String | Sets a max-width in css on the popup, e.g. "600px" |
import {Popup} from 'global-popup/js/popup';
const trigger = document.querySelector('span');
new Popup(trigger, 'popupContent1', { MIN_WIDTH: "100px", MAX_WIDTH: "600px" });
<div>
<span>Popup trigger</span>
<div id="popupContent1">
<p>Some popup text</p>
</div>
</div>
FAQs
Builds and styles a popup that can be opened and closed
The npm package @springernature/global-popup receives a total of 2,060 weekly downloads. As such, @springernature/global-popup popularity was classified as popular.
We found that @springernature/global-popup demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 14 open source maintainers 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.
Research
Security News
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
Security News
Socket CEO Feross Aboukhadijeh discusses the open web, open source security, and how Socket tackles software supply chain attacks on The Pair Program podcast.
Security News
Opengrep continues building momentum with the alpha release of its Playground tool, demonstrating the project's rapid evolution just two months after its initial launch.