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.
@userfrosting/browserify-dependencies
Advanced tools
Run browserify against all dependencies defined in package.json
Branch | Status |
---|---|
master | |
develop |
Runs browserify against compatible dependencies in node_modules
or whichever other folder you specify, outputting the results as UMD bundles in a specified location. Makes no attempt to patch node internals, Browserify options may however be provided for this purpose.
npm i -D @userfrosting/browserify-dependencies
import BrowserifyDeps from "@userfrosting/browserify-dependencies";
const options = {
dependencies: [
"foo",
"bar"
],
inputDir: "./node_modules",
outputDir: "./browser_modules"
};
BrowserifyDeps(options)
.then(() => console.log("Done! ✨"))
.catch(() => console.log("Things have not gone according to plan... 🔥"));
Process modules are wrapped with UMD to allow consumption by most environments, exports in the browser are available via window.[normalised-package-name]
.
API documentation is regenerated for every release using API Extractor and API Documenter. The results reside in docs/api.
Generally speaking, all releases should first traverse through alpha
, beta
, and rc
(release candidate) to catch missed bugs and gather feedback as appropriate. Aside from this however, there are a few steps that MUST always be done.
CHANGELOG.md
is up to date.npm
like npm version 3.0.0
or npm version patch
.npm publish
.npm version
.[3.0.0] - 2020-03-14
window
based on a camel cased version of the package name.ono
to @jsdevtools/ono
, and bumped version to 7.1[dependency-name]_browserified.js
.FAQs
Run browserify against all dependencies defined in package.json
The npm package @userfrosting/browserify-dependencies receives a total of 29 weekly downloads. As such, @userfrosting/browserify-dependencies popularity was classified as not popular.
We found that @userfrosting/browserify-dependencies 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.
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.