Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
A layout manager for web apps. See it in action here.
npm install boxxy
Include Boxxy.js in your project - it works as a standalone script, or as an AMD module - along with Boxxy.css. Then,
var boxxy = new Boxxy({
el: container, // this is a reference to the container DOM element
columns: [ // or you can have rows instead
'left',
'right'
]
});
This will create two columns inside container
, with left
and right
as their IDs. They will be separated by a vertical control, which you can drag to resize the two columns.
You can easily retrieve references to the two columns (for the purposes of rendering the rest of your UI, for example):
boxxy.blocks.left === document.getElementById( 'left' ); // true
boxxy.blocks.right === document.getElementById( 'right' ); // true
Yeah, it's not. But you can also nest blocks inside each other, specify constraints (minimum and maximum width, etc), set an initial layout (which is fluid, and will keep its proportions when the window resizes, subject to any other specified constraints), and so on.
All will be documented soon! For now, I have to get back to work.
MIT
FAQs
Layout manager for web apps
The npm package boxxy receives a total of 1 weekly downloads. As such, boxxy popularity was classified as not popular.
We found that boxxy 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.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.