Security News
Research
Data Theft Repackaged: A Case Study in Malicious Wrapper Packages on npm
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
bricklayer
Advanced tools
Lightweight cascading grid layout library. Inspired and a lighter alternative to Masonry
<link rel="stylesheet" href="bricklayer.css">
<script src="bricklayer.js"></script>
If you are using modular JavaScript, you can use NPM or Bower
npm install bricklayer # using npm
bower install bricklayer # or using bower
<div class="bricklayer">
<div>Your item</div>
<div>Your another item</div>
<div>Your another but long item</div>
<div>Your another but very short item</div>
<div>Your one more item</div>
<div>Your smallest item</div>
</div>
@media screen and (min-width: 1200px) {
.bricklayer-column-sizer {
/* divide by 3. */
width: 33.3%;
}
}
@media screen and (min-width: 768px) {
.bricklayer-column-sizer {
/* divide by 2. */
width: 50%;
}
}
bricklayer
plugin.var bricklayer = $(".bricklayer").bricklayer()
bricklayer.append(
$("<div>My awesome content</div>")
)
You can also add multiple bricks at once:
bricklayer.append([
$("<div>My awesome content</div>"),
$("<div>My another awesome but very long content</div>")
])
You can add listeners.
bricklayer.on("bricklayer.afterAppend", function () {})
bricklayer.on("bricklayer.beforeAppend", function () {})
MIT
FAQs
Lightweight and strong Masonry alternative
The npm package bricklayer receives a total of 216 weekly downloads. As such, bricklayer popularity was classified as not popular.
We found that bricklayer demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 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.
Security News
Research
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
Research
Security News
Attackers used a malicious npm package typosquatting a popular ESLint plugin to steal sensitive data, execute commands, and exploit developer systems.
Security News
The Ultralytics' PyPI Package was compromised four times in one weekend through GitHub Actions cache poisoning and failure to rotate previously compromised API tokens.