![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
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 examples folder contains Express, React and Angular test applications.
The Contensis JavaScript Delivery API can be installed using npm.
npm install contensis-delivery-api
This version supports the Contensis 11.3 releases.
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");
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
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.