
Research
Two Malicious Rust Crates Impersonate Popular Logger to Steal Wallet Keys
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.
@zaninime/gatsby-source-sanity-transform-images
Advanced tools
[](https://circleci.com/gh/reactgraphqlacademy/gatsby-source-sanity-transform-images/tree/master)
This plugin extends the Gatsby Sanity GraphQL schema to add a localFile
field to the SanityImageAsset
type. The field localFile
returns a File
type. This enables downloading remote images to local so you have the flexibility to deploy them to a different CDN (or even process them with gatsby-plugin-sharp
if you need to). This plugin is inspired by the localFile field from Contentful.
This page downloads the profile picture using localFile. The picture is served via Firebase CDN.
This plugin depends on gatsby-source-sanity
npm i gatsby-source-sanity-transform-images --save
// in your gatsby-config.js
module.exports = {
// ...
plugins: [
// ...
"gatsby-source-sanity-transform-images"
]
// ...
};
If you want to download assets for static distribution instead of using Sanity's CDN. This plugin downloads the Sanity Assets to the local filesystem.
Useful for reduced data usage in development or projects where you want the assets copied locally with builds for deploying without links to Sanity's CDN.
query Example {
allSanityImageAsset {
nodes {
# Direct URL to Sanity CDN for this asset
url
# Query for locally stored file(eg An image) - `File` node
localFile(width: 500) {
# Where the asset is copied to for distribution
publicURL
# Use `gatsby-image` to create fluid image resource
childImageSharp {
# max width is already 500 because of localFile(width: 500)
fluid {
src
}
}
}
}
}
}
Thanks for your interest in contributing to this plugin! Pull Requests welcome for any level of improvement, from a small typo to a new section, help us make the project better.
yarn test
To submit a pull request, follow these steps
yarn
FAQs
[](https://circleci.com/gh/reactgraphqlacademy/gatsby-source-sanity-transform-images/tree/master)
We found that @zaninime/gatsby-source-sanity-transform-images 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
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.
Research
A malicious package uses a QR code as steganography in an innovative technique.
Research
/Security News
Socket identified 80 fake candidates targeting engineering roles, including suspected North Korean operators, exposing the new reality of hiring as a security function.