![Deno 2.2 Improves Dependency Management and Expands Node.js Compatibility](https://cdn.sanity.io/images/cgdhsj6q/production/97774ea8c88cc8f4bed2766c31994ebc38116948-1664x1366.png?w=400&fit=max&auto=format)
Security News
Deno 2.2 Improves Dependency Management and Expands Node.js Compatibility
Deno 2.2 enhances Node.js compatibility, improves dependency management, adds OpenTelemetry support, and expands linting and task automation for developers.
connect-fulcrum-webhook
Advanced tools
A connect middleware for processing Fulcrum webhook payloads
A connect middleware for processing Fulcrum webhook payloads.
This middleware lets you add multiple fulcrum-webhook-processing hooks into your connect-powered (Express) web framework. It removes boilerplate code to listen for POST requests with specific payload data (record.create
, form.update
, etc.) and lets you focus on simply processing the payload with whatever business logic you need.
npm install connect-fulcrum-webhook
Use in any connect-powered node web framework. The example below uses express and simulates sending a text message when a record is created or updated.
var express = require('express');
var fulcrumMiddleware = require('connect-fulcrum-webhook');
var app = express();
function payloadProcessor (payload, done) {
// Do stuff with payload like update records in a database,
// send text messages to field staff, email supervisors when
// task marked complete, etc.
// After you've processed the payload call done() with no arguments to signal
// that the webhook has been processed. Call done(), passing an error to return
// a 500 response to the webhook request, signaling that the request should be
// tried again later.
sendTextMessage('Record id ' + payload.data.id + ' has been updated!', function (error) {
if (error) {
console.log('sendTextMessage failed with: ', error);
done(error);
} else {
done();
}
})
}
var fulcrumMiddlewareConfig = {
actions: ['record.create', 'record.update'],
processor: payloadProcessor
};
app.use('/fulcrum', fulcrumMiddleware(fulcrumMiddlewareConfig));
app.listen(5000, function () {
console.log('Listening on port 5000');
});
This example shows how you might perform several different actions based on what type of webhook was received, record or form changes in this case.
var express = require('express');
var fulcrumMiddleware = require('connect-fulcrum-webhook');
var app = express();
// Process records
function recordProcessor (payload) {
doRecordProcessingStuff(payload, done);
}
var recordConfig = {
actions: ['record.create', 'record.update', 'record.delete'],
processor: recordProcessor
};
app.use('/fulcrum', fulcrumMiddleware(recordConfig));
// Process forms
function formProcessor (payload) {
doFormProcessingStuff(payload, done);
}
var formConfig = {
actions: ['form.create', 'form.update', 'form.delete'],
processor: formProcessor
};
app.use('/fulcrum', fulcrumMiddleware(formConfig));
app.listen(5000, function () {
console.log('Listening on port 5000');
});
FAQs
A connect middleware for processing Fulcrum webhook payloads
The npm package connect-fulcrum-webhook receives a total of 2 weekly downloads. As such, connect-fulcrum-webhook popularity was classified as not popular.
We found that connect-fulcrum-webhook 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
Deno 2.2 enhances Node.js compatibility, improves dependency management, adds OpenTelemetry support, and expands linting and task automation for developers.
Security News
React's CRA deprecation announcement sparked community criticism over framework recommendations, leading to quick updates acknowledging build tools like Vite as valid alternatives.
Security News
Ransomware payment rates hit an all-time low in 2024 as law enforcement crackdowns, stronger defenses, and shifting policies make attacks riskier and less profitable.