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.
lineman-bower
Advanced tools
This is a plugin to make it easy to use Bower in conjunction with a [Lineman](http://linemanjs.com) app.
This is a plugin to make it easy to use Bower in conjunction with a Lineman app.
First, add the plugin to your lineman project:
$ npm install lineman-bower --save-dev
When you install lineman-bower, it should create a default .bowerrc
(unless one already exists) with the following vendor directory:
{
"directory": "/vendor/bower"
}
Third, you'll want to make sure that your bower dependencies don't get checked
into git, so add them to your .gitignore
:
/vendor/bower
Next, you'll need a bower.json
to start pulling down dependencies:
{
"name": "my-app",
"version": "0.0.1",
"dependencies": {
"jquery": "~1.9.0"
}
}
Finally, you'll want to make sure that jquery is made available when Lineman
concatenates your vendor JavaScript libraries. You can do this by extending the
js.vendor
configuration in config/files.js
like so:
module.exports = require(process.env["LINEMAN_MAIN"]).config.extend("files", {
js: {
vendor: [
"vendor/bower/jquery/jquery.js",
"vendor/js/**/*.js" //Note that this glob remains for traditional vendor libs
]
}
});
Now, when you run lineman run
and visit localhost:8000,
you should see Bower install jQuery and have access to the library on the page.
FAQs
A Bower plugin for Lineman
The npm package lineman-bower receives a total of 2,958 weekly downloads. As such, lineman-bower popularity was classified as popular.
We found that lineman-bower 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.