Research
Security News
Threat Actor Exposes Playbook for Exploiting npm to Build Blockchain-Powered Botnets
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.
rollup-plugin-filesize
Advanced tools
A rollup plugin to show filesize in the cli
npm install rollup-plugin-filesize
import { rollup } from 'rollup';
import filesize from 'rollup-plugin-filesize';
rollup({
entry: 'main.js',
plugins: [
filesize()
]
}).then(...)
type: boolean
default: true
Whether to show minified size or not
type: boolean
default: true
Whether to show Gzipped size or not
type: boolean
default: false
Whether to show Brotli size or not
Note: this feature is experimental and may be changed in a future release.
type: "release", ``"build"
, or "none"
default: "none"
Indicates how, if any, comparisons will be shown between the
output.file
file size as it was and as it is now being written.
If set to "release"
, will compare the file size at present to that of
the last npm release.
If set to "build"
, the size of the file that is now being built will
be compared to the immediately previous build. This means that if you run
Rollup multiple times with this option, the info on the previous package
size will be lost (since Rollup will have overwritten your copy), so with
this option, you will need to consult your terminal history to see what the
file size was prior to your changes. This option may be useful if you wish
to compare size changes incrementally as you are developing rather than
comparing to your last release.
type : object
default : {}
See the options here
(Note that this replaces the deprecated optional render
function option.)
type : A reporter string (currently "boxen" only), a function, or an array thereof.
Defaults to "boxen".
After rendering occurs, you may wish to pass on the collected file data, e.g., to build a badge for filesizes (as does filesize-badger).
You can use reporter
to do so:
filesize({
reporter: [
function (options, bundle, {
minSize, gzipSize, brotliSize, bundleSize,
fileName,
// "showBeforeSizes: release"
lastVersion,
// "showBeforeSizes: "release" or "showBeforeSizes": "build"
bundleSizeBefore, brotliSizeBefore, minSizeBefore, gzipSizeBefore
}) {
// If a promise is returned, it will be awaited before rendering.
return promise;
},
],
});
type: string
default : 'dark'
options : 'dark'/'light'
choose based on your terminal theme.
MIT
FAQs
A rollup plugin to show filesize in the cli
The npm package rollup-plugin-filesize receives a total of 28,604 weekly downloads. As such, rollup-plugin-filesize popularity was classified as popular.
We found that rollup-plugin-filesize 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
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.
Security News
NVD’s backlog surpasses 20,000 CVEs as analysis slows and NIST announces new system updates to address ongoing delays.
Security News
Research
A malicious npm package disguised as a WhatsApp client is exploiting authentication flows with a remote kill switch to exfiltrate data and destroy files.