
Security News
Critical Security Vulnerability in React Server Components
React disclosed a CVSS 10.0 RCE in React Server Components and is advising users to upgrade affected packages and frameworks to patched versions now.
@userfrosting/browserify-dependencies
Advanced tools
Run browserify against all dependencies defined in package.json
| Branch | Status |
|---|---|
| master |
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
IMPORTANT
This is an ES module package targeting NodeJS^12.17.0 || >=13.2.0, refer to the NodeJS ESM docs regarding how to correctly import. ESM loaders like@babel/loaderoresmlikely won't work as expected.
import { browserifyDependencies } from "@userfrosting/browserify-dependencies";
const options = {
dependencies: [
"foo",
"bar"
],
inputDir: "./node_modules",
outputDir: "./browser_modules"
};
browserifyDependencies(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.[normalized-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.FAQs
Run browserify against all dependencies defined in package.json
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.

Security News
React disclosed a CVSS 10.0 RCE in React Server Components and is advising users to upgrade affected packages and frameworks to patched versions now.

Research
/Security News
We spotted a wave of auto-generated “elf-*” npm packages published every two minutes from new accounts, with simple malware variants and early takedowns underway.

Security News
TypeScript 6.0 will be the last JavaScript-based major release, as the project shifts to the TypeScript 7 native toolchain with major build speedups.