Security News
38% of CISOs Fear They’re Not Moving Fast Enough on AI
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
contensis-delivery-api
Advanced tools
Contensis JavaScript Delivery API implementation written in TypeScript.
This allows the querying and retrieval of entries, content types and projects in JavaScript.
It can be used in any ES5 compatible project.
The contensis-delivery-api-examples repo contains Express, React and Angular test applications, as well as a Node.js nodes api extended example.
The Contensis JavaScript Delivery API can be installed using npm.
npm install contensis-delivery-api
This version supports the upcoming Contensis 12.2 release. For Contensis 11.3 support use this version .
Using ES2015 async/await
import { Client } from 'contensis-delivery-api';
let contensisConfig = {
rootUrl: 'https://my-cms.com',
accessToken: 'MY_DELIVERY_API_ACCESS_TOKEN',
projectId: 'MY_PROJECT_ID',
language: 'en-GB',
versionStatus: 'published',
pageSize: 50
};
async function loadMovies() {
let client = Client.create(contensisConfig);
let movieList = await client.entries.list({
contentTypeId: 'movie',
pageOptions: { pageIndex: 0, pageSize: 10 },
orderBy: ['-releaseDate']
});
console.log(movieList.items);
}
loadMovies();
Using Promises
import { Client } from 'contensis-delivery-api';
let contensisConfig = {
rootUrl: 'https://my-cms.com',
accessToken: 'MY_DELIVERY_API_ACCESS_TOKEN',
projectId: 'MY_PROJECT_ID',
language: 'en-GB',
versionStatus: 'published',
pageSize: 50
};
function loadMovies() {
let client = Client.create(contensisConfig);
client.entries.list({
contentTypeId: 'movie',
pageOptions: { pageIndex: 0, pageSize: 10 },
orderBy: ['-releaseDate']
}).then(movieList => {
console.log(movieList.items);
});
}
loadMovies();
Read our documentation on the Contensis Javascript Delivery API to learn of all it's features.
This library relies on the fetch API being available at runtime. In modern browsers fetch is available natively, and a polyfill is provided for older browsers. The library build that targets browsers can be found in the bundle folder.
The library supports Node.js 8 and above.
When using this library in Node.js you need to add the node-fetch npm package as a dependecy and ensure fetch is registered as a global function:
global.fetch = require("node-fetch");
[1.1.5-beta.3] - 2020-05-26
FAQs
Client for retrieving content using the read-only Contensis Delivery API
The npm package contensis-delivery-api receives a total of 198 weekly downloads. As such, contensis-delivery-api popularity was classified as not popular.
We found that contensis-delivery-api demonstrated a healthy version release cadence and project activity because the last version was released less than 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.
Security News
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
Research
Security News
Socket researchers uncovered a backdoored typosquat of BoltDB in the Go ecosystem, exploiting Go Module Proxy caching to persist undetected for years.
Security News
Company News
Socket is joining TC54 to help develop standards for software supply chain security, contributing to the evolution of SBOMs, CycloneDX, and Package URL specifications.