
Security News
MCP Community Begins Work on Official MCP Metaregistry
The MCP community is launching an official registry to standardize AI tool discovery and let agents dynamically find and install MCP servers.
request-multipart
Advanced tools
Multipart body support for request-compose
var request = require('request-compose').extend({
Request: {multipart: require('request-multipart')}
}).client
;(async () => {
try {
var {res, body} = await request({
method: 'POST',
url: 'https://slack.com/api/files.upload',
headers: {
authorization: 'Bearer [ACCESS TOKEN]'
},
multipart: {
file: require('fs').createReadStream('cat.png')
}
})
console.log(body)
}
catch (err) {
console.error(err)
}
})()
multipart: {
key: 'value' // String, Buffer or Stream
}
multipart: {
status: 'Hello',
'media[]': fs.createReadStream('cat.png')
}
--88b7fcd3-7776-4087-8b09-5b0f5c8af069
Content-Disposition: form-data; name="status"
Content-Type: text/plain
Hello
--88b7fcd3-7776-4087-8b09-5b0f5c8af069
Content-Disposition: form-data; name="media[]"; filename="cat.png"
Content-Type: image/png
...stream...
Most servers expect the
filename
key to be set inside theContent-Disposition
and a correct MIME type to be specified asContent-Type
. When reading a file asBuffer
request-multipart cannot determine those values.
multipart: {
key: {
body: 'value', // String, Buffer or Stream
options: {name: '', type: '', length: 0}
}
}
multipart: {
file: {
body: fs.readFileSync('cat.png'),
options: {name: 'cat.png', type: 'image/png'}
}
}
--77f9de0f-8905-4b63-9ca9-ad1ff9827053
Content-Disposition: form-data; name="file"; filename="cat.png"
Content-Type: image/png
...buffer...
multipart: {
key: [
'value', // String, Buffer or Stream
'value', // String, Buffer or Stream
]
}
multipart: {
attachment: [
fs.createReadStream('cat.png'),
fs.createReadStream('beep.mp3')
]
}
--21cd47c7-379b-43f3-8e5e-d95c36653abf
Content-Disposition: form-data; name="attachment"; filename="cat.png"
Content-Type: image/png
...stream...
--21cd47c7-379b-43f3-8e5e-d95c36653abf
Content-Disposition: form-data; name="attachment"; filename="beep.mp3"
Content-Type: audio/mpeg
...stream...
multipart: [
{
key: 'value',
body: 'value' // String, Buffer or Stream
},
{
key: 'value',
body: 'value' // String, Buffer or Stream
}
]
multipart: [
{
'Content-Type': 'application/json',
body: JSON.stringify({name: 'cat.png'})
},
{
'Content-Type': 'image/png',
body: fs.createReadStream('cat.png')
}
]
--f3386c29-f73f-423f-b80e-9dac2801893b
Content-Type: application/json
{"name":"cat.png"}
--f3386c29-f73f-423f-b80e-9dac2801893b
Content-Type: image/png
...stream...
DEBUG=req,res,body,json node examples/multipart.js slack
FAQs
Multipart body support for request-compose
We found that request-multipart 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.
Security News
The MCP community is launching an official registry to standardize AI tool discovery and let agents dynamically find and install MCP servers.
Research
Security News
Socket uncovers an npm Trojan stealing crypto wallets and BullX credentials via obfuscated code and Telegram exfiltration.
Research
Security News
Malicious npm packages posing as developer tools target macOS Cursor IDE users, stealing credentials and modifying files to gain persistent backdoor access.