Security News
Input Validation Vulnerabilities Dominate MITRE's 2024 CWE Top 25 List
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
fulcrum-app
Advanced tools
A JavaScript library for the Fulcrum API.
npm install --save fulcrum-app
Create a fulcrum client with your API token.
var Fulcrum = require('fulcrum-app');
var fulcrum = new Fulcrum({
api_key: 'abc123'
});
Various methods are available for each of the resources. Check the chart below for details.
Finds a single resource. Parameters are a resource id and a callback. The callback should accept an error and resource object, representing a form, record, changeset, etc.
var formFound = function (error, form) {
if (error) {
console.log('Error: ', error);
return;
}
console.log('Found a form!', form);
};
fulcrum.forms.find('916474a7-b995-4b36-81db-8eda97f93a73', formFound);
Check the Fulcrum API Docs for an example of returned objects.
Search for resources. Parameters are an options object and a callback. The options object will be converted to query string parameters and properly url encoded. The options will vary depending on the resource, but pagination parameters are always accepted.
The callback should accept an error and an object representing a set of resources as well as pagination information. For example, a set of records will look like:
{
"current_page": 1,
"total_pages": 1,
"total_count": 2,
"per_page": 20000,
"records": [
{
"status": null,
"version": 1,
"id": "c05ee229-5d91-4ac5-b3e4-00c5cc063f3f",
"form_id": "512342b0-2bce-4e31-9d4a-8f29e929f7ac",
"form_values": {
"b799": [
{
"photo_id": "e5e4cd83-10cb-462f-91ea-9fee48f15d33"
}
],
"e659": {
"choice_values": [
"Deer Stand"
],
"other_values": []
}
},
"latitude": 35.2116941,
"longitude": -81.6359073
},
{
"status": null,
"version": 1,
"id": "42ec66d0-1c4b-4fef-aeea-ac96130f86a7",
"form_id": "512342b0-2bce-4e31-9d4a-8f29e929f7ac",
"form_values": {
"b799": [
{
"photo_id": "71b64b8e-800a-40cd-a8ae-ae31a583171b"
}
],
"e659": {
"choice_values": [
"Deer Stand"
],
"other_values": []
}
},
"latitude": 35.2091085,
"longitude": -81.636208
}
]
}
var recordsFound = function (error, records) {
if (error) {
console.log('Error: ', error);
return;
}
records.records.forEach(function(record) {
console.log('Location is: ', record.latitude, record.longitude);
});
};
fulcrum.records.search({form_id: '916474a7-b995-4b36-81db-8eda97f93a73'}, recordsFound);
Create an object. Parameters are an object and a callback. The object should represent the resource you are creating. Check the Fulcrum API Docs for examples of resource objects.
The callback should accept an error and an object representing the created resource.
var webhookCreated = function (error, webhook) {
if (error) {
console.log('Error: ', error);
return;
}
console.log('I created a webhook and its id is', webhook.webhook.id);
};
var webhook_to_create = {
"webhook": {
"name": "My First Webhook",
"url": "http://foo.com/fulcrum_webhook",
"active": true
}
};
fulcrum.webhooks.create(webhook_to_create, webhookCreated);
Update an object. Parameters are an id, an object and a callback.
The id is the unique id for the resource to be updated.
The object should represent the resource you are updating.
The callback should accept an error and an object representing the updated resource.
var webhookUpdated = function (error, webhook) {
if (error) {
console.log('Error: ', error);
return;
}
console.log("My webhook's new name is", webhook.webhook.name);
};
var webhook_to_update = {
"webhook": {
"name": "The Best Webhook",
"url": "http://foo.com/fulcrum_webhook",
"active": false
}
};
fulcrum.webhooks.update('bc53d884-a7a8-4697-9e35-e26192be724e', webhook_to_update, webhookUpdated);
Delete an object. Parameters are an id and a callback.
The id is the unique id for the resource to be deleted.
The callback should accept an error. If there is no error the resource was deleted.
var recordDeleted = function (error) {
if (error) {
console.log('There was a problem deleting the record.');
} else {
console.log('The record was deleted.');
}
};
fulcrum.records.delete('916474a7-b995-4b36-81db-8eda97f93a73', recordDeleted);
Resource | Methods |
---|---|
Forms | find, search, create, update, delete |
Records | find, search, create, update, delete |
Photos | find, search |
Projects | search |
Changesets | find, search, create, update, close |
Choice Lists | find, search, create, update, delete |
Classification Sets | find, search, create, update, delete |
Webhooks | find, search, create, update, delete |
Install dependencies:
cd fulcrum-node
npm install
Fulcrum Node is written in CoffeeScript. Use gulp to compile to JavaScript:
vim src/index.coffee
gulp compile
Or have gulp watch the src directory and compile when changes are made:
gulp watch
Be sure you've compiled to javascript and then:
npm test
FAQs
JavaScript wrapper for the Fulcrum API
The npm package fulcrum-app receives a total of 36 weekly downloads. As such, fulcrum-app popularity was classified as not popular.
We found that fulcrum-app demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 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.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.
Research
Security News
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.