Research
Security News
Quasar RAT Disguised as an npm Package for Detecting Vulnerabilities in Ethereum Smart Contracts
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
bootstrap-helpers
Advanced tools
View helpers for using Twitter Bootstrap components and general markup
$ npm install bootstrap-helpers
The examples here are Express and EJS, but the underlying functions are just string manipulation and are completely template/framework-agnostic. :)
// Express 3
app.locals.bootstrap = require("bootstrap-helpers");
// Express 2
app.helpers("bootstrap", require("bootstrap-helpers"));
// view.ejs
<%- bootstrap.button("Call to Action", {
style: "primary",
size: "large"
}) %>
<button class="btn btn-primary btn-large" type="button">Call to Action</button>
<%- bootstrap.container({ fluid: true }); %>
<div class="container-fluid">
<%- bootstrap.row({ fluid: true }) %>
<div class="row-fluid">
<%- bootstrap.col(4, { tag: "aside" }) %>
<aside class="span4">
Sidebar
<%- bootstrap.colEnd("aside") %>
</aside>
<%- bootstrap.col(8, { id: "main" }) %>
<div class="span8" id="main">
<p>Hello World!</p>
<%- bootstrap.colEnd() %>
</div>
<%- bootstrap.rowEnd() %>
</div>
<%- bootstrap.containerEnd() %>
</div>
0.0.1 Initial Release
FAQs
View helpers for using Twitter Bootstrap components and general markup
The npm package bootstrap-helpers receives a total of 4 weekly downloads. As such, bootstrap-helpers popularity was classified as not popular.
We found that bootstrap-helpers 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 researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
Security News
Research
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
Research
Security News
Socket researchers discovered a malware campaign on npm delivering the Skuld infostealer via typosquatted packages, exposing sensitive data.