Was this article helpful?
Thanks for your feedback
This guide will help you get started with Contentstack JavaScript Delivery SDK to build apps powered by Contentstack.
To get started with JavaScript, you will need the following:
To use the JavaScript Delivery SDK, download and include it in the <script> tag:
<script type="text/javascript" src="/path/to/contentstack.min.js"></script>
Tip: You can click on the download link above and download the JavaScript SDK code. Save the code in a file named "contentstack.min.js" and provide the path to this file in the script tag, as shown above.
To initialize the SDK, you will need to specify the stack’s API key, delivery token, and name of the environment where you will publish the content:
const Stack = Contentstack.Stack("api_key", "delivery_token", "environment_name");
Note: By default, the SDK uses the North American region. Configuration changes are not required for North American region users.
For Europe or Azure North America, check the code of your region and configure your SDK.
Once you have initialized the SDK, you can query entries to fetch the required content.
For Setting the branch for Europe or Azure North America, check the code of your region and initialize SDK in a particular branch.
Contentstack allows you to define HTTP proxy for your requests with the JavaScript Delivery SDK. A proxied request allows you to anonymously access public URLs through a proxy server even from within a corporate firewall.
Here is the basic syntax of the proxy settings that you can pass within fetchOptions of the JavaScript Delivery SDK:
const HttpProxyAgent = require("http-proxy-agent"); const proxyAgent = new HttpProxyAgent("http://proxyurl/"); const Stack = Contentstack.Stack("api_key", "access_token", "environment_name", { agent: proxyAgent });
Here are a few examples of how you can add a username and password to HttpProxyAgent.
var proxy = new HttpsProxyAgent('https://username:password@your-proxy.com');
var proxyOpts = url.parse('https://your-proxy.com'); proxyOpts.auth = 'username:password'; var proxy = new HttpsProxyAgent(proxyOpts);
var proxyOpts = url.parse('https://your-proxy.com'); proxyOpts.headers = { 'Proxy-Authentication': 'Basic ' + new Buffer('username:password').toString('base64') }; var proxy = new HttpsProxyAgent(proxyOpts);
Contentstack offers three regions North America (NA), Europe (EU) and Azure North America (NA) as data centers to store customers' account details and data. These regions are independent of each other and therefore have a dedicated set of instructions to use SDKs offered by Contentstack.
To use SDKs for the Europe and Azure NA region, you will have to make certain changes in the configuration of the SDK, as detailed below, and the rest of the instructions remain the same.
Once you have initialized the SDK, you can start getting content in your app.
The cache policies allow you to define the source from where the SDK will retrieve the content. Based on the selected policy, the SDK can get the data from cache, network, or both.
Let’s look at the various cache policies available for use:
POLICIES | DESCRIPTION |
IGNORE_CACHE (default) | When the IGNORE_CACHE policy is set, the SDK always retrieves data by making a network call, without maintaining any cache. This is set as the default policy. |
ONLY_NETWORK | If you set ONLY_NETWORK as the cache policy, the SDK retrieves data through a network call, and saves the retrieved data in the cache. |
CACHE_ELSE_NETWORK | When the CACHE_ELSE_NETWORK policy is set, the SDK gets data from the cache. However, if it fails to retrieve data from the cache, it makes a network call. |
NETWORK_ELSE_CACHE | When the NETWORK_ELSE_CACHE policy is set, the SDK gets data using a network call. However, if the call fails, it retrieves data from cache. |
CACHE_THEN_NETWORK | If CACHE_THEN_NETWORK is set as the cache policy, the SDK gets data from cache, and then makes a network call. (A success callback will be invoked twice.) |
You can set a cache policy on a stack and/or query object.
Note: Caching in SDK is performed through the SDK's local storage instead of CDN.
This option allows you to globalize a cache policy. This means the cache policy you set will be applied to all the query objects of the stack.
// setting a cache policy on a stack Stack.setCachePolicy(Contentstack.CachePolicy.NETWORK_ELSE_CACHE)
This option allows you to set/override a cache policy on a specific query object.
// setting a cache policy on a query object Query.setCachePolicy(Contentstack.CachePolicy.CACHE_THEN_NETWORK)
Contentstack SDKs let you interact with the Content Delivery APIs and retrieve content from Contentstack. They are read-only in nature. The SDKs fetch and deliver content from the nearest server via Fastly, our powerful and robust CDN.
To get a single entry, you need to specify the content type and the id of the entry.
const Query = Stack.ContentType('blog').Entry("blta464e9fbd048668c") Query.fetch() .then(function success(entry) { console.log(entry.get('title')); // Retrieve field value by providing a field's UID console.log(entry.toJSON()); // Convert the entry result object to JSON }, function error(err) { // err object });
Note: We have a method on query for a specific language. For example, consider the following query:
Stack.ContentType(type).Query().language('fr-fr').toJSON().find()
It will provide all entries of a content type published on the French locale.
To retrieve multiple entries of a content type, you need to specify the content type UID. You can also specify search parameters to filter results.
const Query = Stack.ContentType('blog').Query(); Query .where("title", "welcome") .includeSchema() .includeCount() .toJSON() .find() .then(function success(result) { // result is array where - // result[0] => entry objects // result[result.length-1] => entry objects count included only when .includeCount() is queried. // result[1] => schema of the content type is included when .includeSchema() is queried. }, function error(err) { // err object });
These were examples of some of the basic queries of the SDK. For advanced queries, refer to the Contentstack JavaScript Delivery SDK API reference.
Note: Currently, the JavaScript SDK does not support multiple content types referencing in a single query. For more information on how to query entries and assets, refer the Queries section of our Content Delivery API documentation.
In a single instance, the Get Multiple Entries query will retrieve only the first 100 items of the specified content type. You can paginate and retrieve the rest of the items in batches using the skip and limit parameters in subsequent requests.
const Stack = Contentstack.Stack("stack_api_key", "delivery_token", "environment_name"); let blogQuery = Stack.ContentType('example').Query(); let data = blogQuery.skip(20).limit(20).find() data.then(function(result) { },function (error) { // error function })
Was this article helpful?
Thanks for your feedback