
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
mk-infopane
Advanced tools
Kind of a status-bar or notifier. Sliding messages in area with limited height.
Kind of a status-bar or notifier. Sliding messages in area with limited height. A library agnostic, mobile friendly, css animated UI widget. Minimal restrictions on styling.
Developed for mobile, but turned out to be useful for desktops.
Include script and style sheet into you page:
<script src="path/to/plugin/mk-infopane.min.js"></script>
<link href="path/to/plugin/mk-infopane.min.css" rel="stylesheet">
Create html block you want to use as an infopane.
<div id="paneElement"></div>
Create infopane instance, binded to DOM element.
var pane = new mk.Infopane( paneElement[,options] );
Publish messages with different styles to pane
pane.echo(text[, options])
pane.ok (text[, options])
pane.warn(text[, options])
pane.err (text[, options])
pane.info(text[, options])
Publish messages with custom styles
pane.print(options);
Control published messages
var message = pane.info (text, options); // create and print message
message.put(newText); // replace text in it
message.append(additionalText); // add text
setTimeout(function(){ message.unpublish(); },10000) // close it later
FAQs
Kind of a status-bar or notifier. Sliding messages in area with limited height.
We found that mk-infopane 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
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.