
Security News
NVD Concedes Inability to Keep Pace with Surging CVE Disclosures in 2025
Security experts warn that recent classification changes obscure the true scope of the NVD backlog as CVE volume hits all-time highs.
mercurius-upload
Advanced tools
graphql-upload-minimal implementation plugin for Fastify & mercurius.
Plugin made for Fastify v5:
yarn add mercurius-upload
# or
npm i mercurius-upload
# or
pnpm add mercurius-upload
Plugin options should conform to https://github.com/flash-oss/graphql-upload-minimal#type-processrequestoptions
fastify.register(require('mercurius-upload'), {
// options passed to processRequest from graphql-upload-minimal
// maxFileSize: 1024 * 1024 * 5,
// maxFiles: 1,
})
or
import MercuriusGQLUpload from 'mercurius-upload'
// ...
fastify.register(MercuriusGQLUpload, {
// options passed to processRequest from graphql-upload-minimal
})
const GQL = require('mercurius')
const { GraphQLUpload } = require('graphql-upload-minimal')
const fs = require('fs')
const util = require('util')
const stream = require('stream')
const path = require('path')
const pipeline = util.promisify(stream.pipeline)
const uploadsDir = path.resolve(__dirname, '../uploads')
const schema = /* GraphQL */ `
scalar Upload
type Query {
add(x: Int, y: Int): Int
}
type Mutation {
uploadImage(image: Upload): Boolean
}
`
const resolvers = {
Upload: GraphQLUpload,
Query: {
add: async (_, { x, y }) => {
return x + y
},
},
Mutation: {
uploadImage: async (_, { image }) => {
const { filename, createReadStream } = await image
const rs = createReadStream()
const ws = fs.createWriteStream(path.join(uploadsDir, filename))
await pipeline(rs, ws)
return true
},
},
}
module.exports = function (fastify, options, done) {
fastify.register(require('mercurius-upload'))
fastify.register(GQL, {
schema,
resolvers,
graphiql: true,
})
done()
}
FAQs
Fastify plugin to support GraphQL uploads using graphql-upload
The npm package mercurius-upload receives a total of 4,159 weekly downloads. As such, mercurius-upload popularity was classified as popular.
We found that mercurius-upload demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 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
Security experts warn that recent classification changes obscure the true scope of the NVD backlog as CVE volume hits all-time highs.
Security Fundamentals
Attackers use obfuscation to hide malware in open source packages. Learn how to spot these techniques across npm, PyPI, Maven, and more.
Security News
Join Socket for exclusive networking events, rooftop gatherings, and one-on-one meetings during BSidesSF and RSA 2025 in San Francisco.