npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@uploadflow/express

v0.1.0

Published

Express middleware for the uploadflow file-upload pipeline (direct, presigned, linked uploads)

Downloads

73

Readme

@uploadflow/express

Express middleware for the uploadflow file-upload pipeline: pluggable storage (Azure Blob with real SAS / AWS S3 / local / custom), magic-byte validation, presigned direct-to-storage uploads, and record-linked uploads.

npm i @uploadflow/express @uploadflow/core
# storage driver (optional peer of core) — install the one you use:
npm i @aws-sdk/client-s3 @aws-sdk/lib-storage @aws-sdk/s3-request-presigner
# or: npm i @azure/storage-blob

Peer dep: express (^4 or ^5). multer is bundled.

Setup

import express from 'express';
import { createUploadFlow } from '@uploadflow/express';
import { InMemoryAttachmentStore } from '@uploadflow/core';

const uploads = createUploadFlow({
  storage: {
    driver: 's3',
    s3: { region, bucket, accessKeyId, secretAccessKey },
  },
  validation: { maxFileSize: '5mb', allow: ['image/png', 'image/jpeg'], magicBytes: true },
  urlMode: 'signed',
  attachmentStore: new InMemoryAttachmentStore(), // or MongooseAttachmentStore.forRoot({...})
});

const app = express();
app.use(express.json());

Direct upload

app.post('/avatar', ...uploads.single({ field: 'avatar' }), (req, res) => {
  res.json(req.uploadedFile); // { key, url, size, mime, originalName }
});

app.post('/photos', ...uploads.array({ field: 'photos', maxCount: 5 }), (req, res) => {
  res.json(req.uploadedFiles); // StoredObject[]
});

single() / array() options: { field, allow?, maxFileSize?, category?, maxCount? }. Each returns an array of middleware — spread it into the route.

Presigned upload

app.post('/uploads/presign', uploads.presignHandler());  // -> { uploadUrl, key, method, headers, expiresAt }
app.post('/uploads/confirm', uploads.confirmHandler());  // { key } -> StoredObject
// client
const { uploadUrl, key, headers } = await api.post('/uploads/presign',
  { filename: file.name, contentType: file.type }).then(r => r.data);
await fetch(uploadUrl, { method: 'PUT', body: file, headers });   // straight to storage
const meta = await api.post('/uploads/confirm', { key }).then(r => r.data);

Linked upload (attach to a record)

app.post('/media',
  ...uploads.linked({ fields: ['mediaFile'], module: 'MEDIA', recordIdFrom: (body) => body._id }),
  (req, res) => {
    // your handler creates the record and responds; uploadflow uploads + links, then injects
    // `attachments: [...]` into the JSON before it's sent
    res.json({ _id: 'rec1', title: req.body.title });
  }
);

linked() options: { fields, module?, allow?, maxFileSize?, recordIdFrom?, createdByFrom?, as? }. Requires attachmentStore in createUploadFlow. On DELETE routes it unlinks by record id. On any failure the uploaded blob is cleaned up (no orphans).

Error handling

Mount the error handler last so validation errors return the right status (400 / 413 / 404):

app.use(uploads.errorHandler());

uploads.storage (a StorageService) and uploads.presign (a PresignService) are exposed for manual use, e.g. await uploads.storage.resolveDownloadUrls(docs, { path: 'attachments[].key' }).

Full docs, config reference, urlMode, orphan handling, custom adapters: https://github.com/OWNER/uploadflow#readme

MIT