
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.
fastify-cloudinary
Advanced tools
Plugin to share a common Cloudinary connection across Fastify.
Install fastify-cloudinary
with your favorite package manager:
$ npm i fastify-cloudinary
# or
$ yarn add fastify-cloudinary
# or
$ pnpm i fastify-cloudinary
# or
$ bun add fastify-cloudinary
// esm
import cloudinary from 'fastify-cloudinary';
// cjs
const cloudinary = require('fastify-cloudinary');
import stream from 'stream';
import util from 'util';
import multipart from '@fastify/multipart';
import cloudinary from 'fastify-cloudinary';
const pipeline = util.promisify(stream.pipeline);
fastify.register(multipart);
fastify.register(cloudinary, { url: 'cloudinary://API_KEY:API_SECRET@CLOUD_NAME' });
fastify.post('/file-uploads', async (req, reply) => {
const data = await req.file();
await pipeline(
data.file,
fastify.cloudinary.uploader.upload_stream({ public_id: data.fieldname }),
);
return { message: 'OK' };
});
See the examples folder for more details.
Support Fastify v5
FAQs
Plugin to share a common Cloudinary connection across Fastify.
We found that fastify-cloudinary demonstrated a not healthy version release cadence and project activity because the last version was released 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.
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.