
Product
Announcing Socket Fix 2.0
Socket Fix 2.0 brings targeted CVE remediation, smarter upgrade planning, and broader ecosystem support to help developers get to zero alerts.
@fluvial/express-adapter
Advanced tools
Express middleware to Fluvial middleware or vice versa adapter
At the onset of Fluvial, the goal was to make the framework as compatible with Express ideals as possible. As development continued, some of the ergonomics of Express were not great and as such, the architecture changed slightly. It will still sorta feel Express-like in general, but it was enough of a change that your favorite middleware won't work when plopped directly into a Fluvial application. Now you'd have to write a shim or adapter to use it.
BUT WAIT! Do not become disheartened by this fact--this package will solve those issues. Whereas you'd have to write an adapter for your favorite Express middleware or completely rewrite the middleware from the ground up emulating that middleware, you can use the functions from this package to cater to your needs.
All of this amazingness has flooded your mind with happiness, but you must be asking another question, too:
What about the other direction? Can I take a Fluvial middleware and use it in an Express application?
It's your lucky day! This package also gives you the ability to adapt your favorite Fluvial middleware to work in Express applications.
If you are not familiar with Fluvial, you can check it out at https://npmjs.com/package/fluvial.
For cases when you want to adapt an Express middleware (in this case, cors
) for Fluvial:
// in your router or application file
import { toFluvial } from '@fluvial/express-adapter';
import cors from 'cors';
router.use(toFluvial(cors()));
Or the other way around, adapting a Fluvial middleware (in this case, @fluvial/csp
) for Express:
// in your router or application file
import { toExpress } from '@fluvial/express-adapter';
import { csp } from '@fluvial/csp';
router.use(toExpress(csp()));
All that this provides are two functions:
toFluvial
, for Express-compatible middleware to work in a Fluvial applicationtoExpress
, for Fluvial-compatible middleware to work in an Express applicationBoth functions only take one argument, that of the middleware that you want to adapt to the usage of the other framework. It returns a middleware wrapper that will invoke the middleware you provided to it that works with the application in which you'd use it.
File an issue! Author a pull request with the fix and add a test that shows that it works. The test suite covers some of the common middlewares already, so some of the simple use cases have been covered and tested.
FAQs
Express middleware to Fluvial middleware or vice versa adapter
We found that @fluvial/express-adapter 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.
Product
Socket Fix 2.0 brings targeted CVE remediation, smarter upgrade planning, and broader ecosystem support to help developers get to zero alerts.
Security News
Socket CEO Feross Aboukhadijeh joins Risky Business Weekly to unpack recent npm phishing attacks, their limited impact, and the risks if attackers get smarter.
Product
Socket’s new Tier 1 Reachability filters out up to 80% of irrelevant CVEs, so security teams can focus on the vulnerabilities that matter.