@atoms-studio/contentful
v9.0.0
Published
Client for Contentful's Content Delivery API
Downloads
42
Keywords
Readme
contentful.js - Contentful JavaScript Content Delivery Library
JavaScript library for the Contentful Content Delivery API and Content Preview API. It helps you to easily access your Content stored in Contentful with your JavaScript applications.
What is Contentful?
Contentful provides content infrastructure for digital teams to power websites, apps, and devices. Unlike a CMS, Contentful was built to integrate with the modern software stack. It offers a central hub for structured content, powerful management and delivery APIs, and a customizable web app that enable developers and content creators to ship their products faster.
- contentful.js - Contentful JavaScript Delivery library
Core Features
- Content retrieval through Content Delivery API and Content Preview API.
- Synchronization
- Localization support
- Link resolution
- Built in rate limiting with recovery procedures
- ES6 modules / bundler support (since v5.0.1 - 17. October 2017)
- Supports Environments (since v6.0.0 - 06. April 2018)
Supported browsers and Node.js versions:
- Chrome
- Firefox
- Edge
- IE11 (with legacy version of the library)
- Safari
- node.js (LTS)
Other browsers should also work, but at the moment we're only running automated tests on the browsers and Node.js versions specified above.
Getting started
In order to get started with the Contentful JS library you'll need not only to install it, but also to get credentials which will allow you to have access to your content in Contentful.
- Installation
- Your first request
- Using this library with the Preview API
- Authentication
- Documentation & References
Installation
npm install contentful
Using it directly in the browser:
For browsers, we recommend to download the library via npm or yarn to ensure 100% availability.
If you'd like to use a standalone built file you can use the following script tag or download it from jsDelivr, under the dist
directory:
<script src="https://cdn.jsdelivr.net/npm/contentful@latest/dist/contentful.browser.min.js"></script>
Using contentful@latest
will always get you the latest version, but you can also specify a specific version number.
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/contentful.browser.min.js"></script>
The Contentful Delivery library will be accessible via the contentful
global variable.
Check the releases page to know which versions are available.
Legacy browsers:
This library also comes with a legacy version to support Internet Explorer 11 and other older browsers. It already contains a polyfill for Promises.
To support legacy browsers in your application, use contentful.legacy.min.js
instead of contentful.browser.min.js
Your first request
The following code snippet is the most basic one you can use to get some content from Contentful with this library:
const contentful = require("contentful");
const client = contentful.createClient({
// This is the space ID. A space is like a project folder in Contentful terms
space: "developer_bookshelf",
// This is the access token for this space. Normally you get both ID and the token in the Contentful web app
accessToken: "0b7f6x59a0"
});
// This API call will request an entry with the specified ID from the space defined at the top, using a space-specific access token.
client
.getEntry("5PeGS2SoZGSa4GuiQsigQu")
.then(entry => console.log(entry))
.catch(err => console.log(err));
Check out this JSFiddle version of our Product Catalogue demo app.
Using this library with the Preview API
This library can also be used with the Preview API. In order to do so, you need to use the Preview API Access token, available on the same page where you get the Delivery API token, and specify the host of the preview API, such as:
const contentful = require("contentful");
const client = contentful.createClient({
space: "developer_bookshelf",
accessToken: "preview_0b7f6x59a0",
host: "preview.contentful.com"
});
You can find all available methods of our client in our reference documentation
Authentication
To get your own content from Contentful, an app should authenticate with an OAuth bearer token.
You can create API keys using the Contentful web interface. Go to the app, open the space that you want to access (top left corner lists all the spaces), and navigate to the APIs area. Open the API Keys section and create your first token. Done.
Don't forget to also get your Space ID.
For more information, check the Contentful REST API reference on Authentication.
Documentation & References
- Configuration
- Reference documentation
- Tutorials & other resources
- Troubleshooting
- Advanced Concepts
- Migration
To help you get the most out of this library, we've prepared all available client configuration options, a reference documentation, tutorials and other examples that will help you learn and understand how to use this library.
Configuration
The createClient
method supports several options you may set to achieve the expected behavior:
contentful.createClient({
... your config here ...
})
Reference documentation
The JS library reference documents what objects and methods are exposed by this library, what arguments they expect and what kind of data is returned.
Most methods also have examples which show you how to use them.
Legacy contentful.js documentation
For versions prior to 3.0.0, you can access documentation at https://github.com/contentful/contentful.js/tree/legacy
Tutorials & other resources
- This library is a wrapper around our Contentful Delivery REST API. Some more specific details such as search parameters and pagination are better explained on the REST API reference, and you can also get a better understanding of how the requests look under the hood.
- Check the Contentful for JavaScript page for Tutorials, Demo Apps, and more information on other ways of using JavaScript with Contentful
Troubleshooting
- I get the error: Unable to resolve module
http
- Our library is supplied as node and browser version. Most non-node environments, like React Native, act like a browser. To force using of the browser version, you can require it via:const { createClient } = require('contentful/dist/contentful.browser.min.js')
- Can I use it with typescript? - Yes, there is also a type definition file
- Is the library doing any caching? - No, check this issue for more infos
Advanced Concepts
More information about how to use the library in advanced or special ways can be found in the ADVANCED.md document.
Migration
We gathered all information related to migrating from older versions of the library in our MIGRATION.md document.
Reach out to us
You have questions about how to use this library?
You found a bug or want to propose a feature?
- File an issue here on GitHub: . Make sure to remove any credential from your code before sharing it.
You need to share confidential information or have other questions?
Get involved
We appreciate any help on our repositories. For more details about how to contribute see our CONTRIBUTING.md document.
License
This repository is published under the MIT license.
Code of Conduct
We want to provide a safe, inclusive, welcoming, and harassment-free space and experience for all participants, regardless of gender identity and expression, sexual orientation, disability, physical appearance, socioeconomic status, body size, ethnicity, nationality, level of experience, age, religion (or lack thereof), or other identity markers.