Gathering detailed insights and metrics for esbuild-plugin-assets-manifest
Gathering detailed insights and metrics for esbuild-plugin-assets-manifest
Gathering detailed insights and metrics for esbuild-plugin-assets-manifest
Gathering detailed insights and metrics for esbuild-plugin-assets-manifest
Generate manifest file like assets-webpack-plugin
npm install esbuild-plugin-assets-manifest
Typescript
Module System
Node Version
NPM Version
JavaScript (98.22%)
CSS (1.78%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
MIT License
11 Stars
23 Commits
2 Watchers
1 Branches
1 Contributors
Updated on Jul 21, 2023
Latest Version
1.0.8
Package Id
esbuild-plugin-assets-manifest@1.0.8
Unpacked Size
9.26 kB
Size
3.51 kB
File Count
6
NPM Version
9.6.7
Node Version
18.17.1
Published on
Sep 09, 2023
Cumulative downloads
Total Downloads
Last Day
0%
NaN
Compared to previous day
Last Week
0%
NaN
Compared to previous week
Last Month
0%
NaN
Compared to previous month
Last Year
0%
NaN
Compared to previous year
Generate manifest file like assets-webpack-plugin
See ./test for example.
1npm install -D esbuild-plugin-assets-manifest
1const assetsManifest = require('esbuild-plugin-assets-manifest'); 2 3esbuild.build({ 4 // entryPoints must be object to generate expected manifest file 5 entryPoints: { 6 app: './index.js' 7 }, 8 outdir: './dist', 9 target: 'esnext', 10 entryNames: '[name]-[hash]', 11 publicPath: '/static', 12 bundle: true, 13 metafile: true, 14 plugins: [ 15 assetsManifest({ 16 filename: 'myapp-manifest.json', 17 path: './dist', 18 metadata: { timestamp: new Date(), module: 'myapp', type: 'esm' }, 19 processOutput(assets) { 20 const orderAssets = { 21 app: assets['app'], 22 ...assets 23 }; 24 return JSON.stringify(orderAssets, null, ' '); 25 } 26 }) 27 ] 28});
See index.d.ts
1// myapp-manifest.json 2{ 3 "app": { 4 "js": "/static/app-VYODTBBJ.js", 5 "css": "/static/app-GXI4CST6.css" 6 }, 7 "": { 8 "jpg": [ 9 "/static/world-7U6P4ADE.jpg" 10 ] 11 }, 12 "metadata": { 13 "timestamp": "2022-01-30T03:45:07.655Z", 14 "module": "myapp", 15 "type": "esm" 16 } 17}
No vulnerabilities found.
Reason
no dangerous workflow patterns detected
Reason
no binaries found in the repo
Reason
0 existing vulnerabilities detected
Reason
license file detected
Details
Reason
0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Reason
Found 0/23 approved changesets -- score normalized to 0
Reason
no SAST tool detected
Details
Reason
detected GitHub workflow tokens with excessive permissions
Details
Reason
dependency not pinned by hash detected -- score normalized to 0
Details
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
security policy file not detected
Details
Reason
project is not fuzzed
Details
Reason
branch protection not enabled on development/release branches
Details
Score
Last Scanned on 2025-07-07
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More