Package Exports
- contentful-export
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (contentful-export) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
Contentful Export
Contentful is a content management platform for web applications, mobile apps and connected devices. It allows you to create, edit & manage content in the cloud and publish it anywhere via powerful API. Contentful offers tools for managing editorial teams and enabling cooperation between organizations.
this tool allows you to export a space to a JSON dump
What this tool is for
this tool does one simple thing which is exporting all your space data to a json file that can be used later to import to another space or save as a backup.
Exported Data
This is an overview of what gets exported.
{
"contentTypes": [],
"entries": [],
"locales":[],
"assets":[]
}
Changelog
Check out the releases page.
Install
npm install -g contentful-export
Usage
Usage: contentful-export [options]
Options:
--version Show version number
--space-id ID of Space with source data
[string] [required]
--management-token Management API token for the space to be exported.
[string] [required]
--export-dir Defines the path for storing the export json file
(defaultpath is the current directory) [string]
--config Configuration file with required valuesThe --management-token parameter allows you to specify a token which will be used for both spaces. If you get a token from https://www.contentful.com/developers/docs/references/authentication/ and your user account has access to both spaces, this should be enough.
Check the example-config.json file for an example of what a configuration file would look like. If you use the config file, you don't need to specify the other options for tokens and space ids.
Example usage
contentful-export \
--space-id spaceID \
--management-token managementTokenor
contentful-export --config example-config.jsonYou can create your own config file based on the example-config.json file.
Usage as a library
While this tool is mostly intended to be used as a command line tool, it can also be used as a Node library:
var spaceExport = require('contentful-export')
spaceExport(options)
.then((output) => {
console.log('space data', output)
})
.catch((err) => {
console.log('oh no! errors occurred!', err)
})The options object can contain any of the CLI options but written with a camelCase pattern instead, and no dashes. So --space-id would become spaceId.
Apart from those options, there are an additional ones that can be passed to it:
errorLogFile- File to where any errors will be written.