Gathering detailed insights and metrics for gatsby-remark-static-images
Gathering detailed insights and metrics for gatsby-remark-static-images
Gathering detailed insights and metrics for gatsby-remark-static-images
Gathering detailed insights and metrics for gatsby-remark-static-images
Copy images in markdown without processing them
npm install gatsby-remark-static-images
Typescript
Module System
Node Version
NPM Version
TypeScript (100%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
MIT License
3 Stars
26 Commits
3 Forks
2 Watchers
9 Branches
3 Contributors
Updated on Jan 28, 2023
Latest Version
1.2.1
Package Id
gatsby-remark-static-images@1.2.1
Unpacked Size
15.66 kB
Size
5.47 kB
File Count
17
NPM Version
6.14.5
Node Version
12.18.1
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
3
17
Copy images in markdown without processing them. Can be used in combination with gatsby-remark-images
to copy SVG and GIF files. Make sure to place this plugin after gatsby-remark-images
.
1yarn add --dev gatsby-remark-static-images
1// gatsby-config.js 2plugins: [ 3 { 4 resolve: 'gatsby-transformer-remark', 5 options: { 6 plugins: [ 7 'gatsby-remark-static-images' 8 ] 9 } 10 } 11]
imageName
This option lets you specify the output name for the image. It should be a function that takes a File
node and returns the name of the image as a string.
Defaults to: (node) => ${node.name}-${node.internal.contentDigest}.${node.extension}
.
1{ 2 resolve: 'gatsby-remark-static-images', 3 options: { 4 imageName: (node) => `${node.name}.${node.extension}` 5 } 6}
No vulnerabilities found.
Reason
no binaries found in the repo
Reason
license file detected
Details
Reason
project is archived
Details
Reason
Found 2/21 approved changesets -- score normalized to 0
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
SAST tool is not run on all commits -- score normalized to 0
Details
Reason
39 existing vulnerabilities detected
Details
Score
Last Scanned on 2025-07-14
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