framework · inferred from evidence
Express
A Node.js web application framework mentioned in the context of middleware usage.
- LinearWebhookClient Express docs example is wrong: `createHandler()` returns a Fetch-style handler
Yes, the docs example was wrong. `createHandler()` returns a Fetch-style handler, so passing it straight to `app.post` as Express middleware does not work. Linear fixed this in `@linear/sdk v55.2.0`, where `createHandler` supports both Fetc
- Stripe webhook: No signatures found matching the expected signature (Express bodyParser.json)
Mount a raw body parser on the webhook route before any JSON parsing: app.use('/webhooks/stripe', bodyParser.raw({type: 'application/json'})) (or express.raw({type:'application/json'})), then pass the raw buffer to stripe.webhooks.construct
- Aserto Node library drags in express dependencies for users on fastify
The team shipped exactly that as a new package: topaz-node, available at aserto-dev/topaz-node and on npm, which contains the directory client without the express helpers. The reporter confirmed it exists and works. Source: https://github.