npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@kontent-ai/migration-toolkit

v2.2.2

Published

This program can be used to import content related data into Kontent.ai from various formats. Additionally, it can also be used to export Kontent.ai data using Delivery API.

Downloads

794

Readme

Kontent.ai Migration Toolkit

The purpose of this tool is to facilitate content migration to & from Kontent.ai environments. It can be used to simplify migration from external systems and also provides a built-in migration between kontent.ai environments.

[!TIP]
This library aims to streamline the migration to / from Kontent.ai environments by providing an abstraction layer which handles creation / updates of content items, language variants, moving items through workflow, publishing, archiving, downloading binary data, uploading assets, id to codename translation and more.

This library can only be used as a library both in node.js & browser or as a CLI utility.

Getting started

Use --help anytime to get information about available commands and their options.

npx @kontent-ai/migration-toolkit@latest --help

# you can also install the package globally, or locally
npm i @kontent-ai/migration-toolkit -g

# with the package installed, you can call the tool as follows
kontent-ai-migration-toolkit --help

# or check details of particular command
kontent-ai-migration-toolkit migrate --help

Code examples

  1. Import
  2. Export
  3. Migrate from external system
  4. Migrate content between Kontent.ai environments

[!NOTE]
You can run kontent-ai-migration-toolkit many times over without being worried that duplicate content items / assets are created.

Migrate between Kontent.ai environments

You may migrate content (items & asset) between Kontent.ai environments. For migrating Data model / structure see Data Ops instead.

[!CAUTION]
We recommend migrating to test / dev environments first to ensure nothing unexpected happens..

Configuration

| Config | Value | | ----------------------- | ----------------------------------------------------------------------------------------------------- | | sourceEnvironmentId | Id of source environment (required) | | sourceApiKey | Management API key of source environment (required) | | targetEnvironmentId | Id of target environment (required) | | targetApiKey | Management API key of target environment (required) | | language | Codename of language that items will be exported in (required) | | items | Comma separated list of items that will be exported (required) | | force | Can be used to disable confirmation prompts. Available options: true & false. Detaults to false |

Migrate CLI

# Migrate from Kontent.ai environment into another Kontent.ai environment
kontent-ai-migration-toolkit migrate --targetEnvironmentId=x --targetApiKey=x --sourceEnvironmentId=x --sourceApiKey=x --language=default --items=itemA,itemB

Import

[!CAUTION]
We do not recommended importing into a production environment directly without testing. Instead you should first create a testing environment and run the script there to make sure everything works as you intended to.

[!NOTE]
When importing it is essential that the target project structure (i.e. Content types, Taxonomies, Collections, Workflows, languages...) are consistent with the ones defined in source environment. Any inconsistency in data such as referencing inexistent taxonomy term, incorrect element type and other inconsistencies may cause import to fail.

Configuration

| Config | Value | | ----------------------- | ----------------------------------------------------------------------------------------------------- | | targetEnvironmentId | Id of Kontent.ai environment (required) | | targetApiKey | Management API key (required) | | filename | Name of the zip file (required) | | baseUrl | Custom base URL for Kontent.ai API calls | | force | Can be used to disable confirmation prompts. Available options: true & false. Detaults to false |

Import CLI

# Import into target environment
kontent-ai-migration-toolkit import --targetEnvironmentId=x --targetApiKey=x --filename=data.zip

Migrate from Kontent.ai

This library can also be used to export content items & assets from Kontent.ai environments. However, when migration from 3rd party system you typically only use the import capabilities of this repository.

Configuration

| Config | Value | | ----------------------- | ------------------------------------------------------------------ | | sourceEnvironmentId | Id of Kontent.ai environment (required) | | sourceApiKey | Management API key of Kontent.ai environment (required) | | language | Codename of language that items will be exported in (required) | | items | Comma separated list of items that will be exported (required) | | filename | Name of the zip file | | baseUrl | Custom base URL for Kontent.ai API calls |

Export CLI

# Export from Kontent.ai environment
kontent-ai-migration-toolkit export --sourceEnvironmentId=x --sourceApiKey=x --language=default --items=itemA,itemB

Migrate from external systems

You can use this library when exporting from 3rd party systems (i.e. legacy CMS) as it will abstract your from using Kontent.ai Management API directly.

The main focus is therefore on transforming the data you need to migrate into a format this library supports. The main migration models are MigrationItem and MigrationAsset. For creating element values elementsBuilder.

See below example of using a strongly typed model and migrating a single item with an asset.

/**
 * Optionally (but highly recommended) you may define a migration model
 * representing the environment you are trying to migrate into.
 */
type LanguageCodenames = 'default' | 'en';
type CollectionCodenames = 'default' | 'global';
type WorkflowCodenames = 'default' | 'custom';
type ContentTypeCodenames = 'article' | 'author';
type WorkflowStepCodenames = 'published' | 'archived' | 'draft';
type ContentTypeCodename<Codename extends ContentTypeCodenames> = Codename;

type ArticleItem = MigrationItem<
    {
        title: MigrationElementModels.TextElement;
        rating: MigrationElementModels.NumberElement;
        related_pages: MigrationElementModels.LinkedItemsElement;
        teaser_image: MigrationElementModels.AssetElement;
    },
    MigrationItemSystem<ContentTypeCodename<'article'>, LanguageCodenames, CollectionCodenames, WorkflowCodenames>,
    WorkflowStepCodenames
>;

const migrationItem: ArticleItem = {
    system: {
        name: 'My article',
        // codename is primary identifier - also used for validating whether asset exists in target env
        codename: 'myArticle',
        collection: {
            // collection codename must match the collection in your target K.ai environment
            codename: 'default'
        },
        language: {
            // language codename must match the language in your target K.ai environment
            codename: 'en'
        },
        type: {
            // type codename must match the content type codename in your target K.ai environment
            codename: 'article'
        },
        workflow: {
            codename: 'default'
        }
    },
    versions: [
        {
            workflow_step: {
                codename: 'published'
            },
            elements: {
                title: elementsBuilder.textElement({ value: 'Title of the article' }),
                rating: elementsBuilder.numberElement({ value: 5 }),
                related_pages: elementsBuilder.linkedItemsElement({
                    value: [
                        {
                            codename: 'pageA'
                        },
                        {
                            codename: 'pageB'
                        }
                    ]
                }),
                // assets are referenced by their codename
                teaser_image: elementsBuilder.assetElement({ value: [{ codename: 'article_teaser' }] })
            }
        }
    ]
};

const migrationAsset: MigrationAsset = {
    // codename of the asset - Used for validating whether asset exists in target env
    codename: 'article_teaser',
    // filename will be used in K.ai asset as a filename
    filename: 'article_teaser.jpg',
    // title will be used in K.ai asset as a title
    title: 'Article teaser',
    // binary data of the asset you want to upload
    binaryData: <BinaryData>,
    // collection assignment
    collection: {
        codename: 'teasers'
    },
    // description of asset in project languages
    descriptions: [
        {
            description: 'Teaser of the article',
            language: {
                codename: 'en_uk'
            }
        }
    ]
};

Once you are happy with the data, you can import them to Kontent.ai using the importAsync function.

await importAsync({
    environmentId: environmentId,
    apiKey: apiKey,
    data: {
        assets: [migrationAsset],
        items: [migrationItem]
    }
});

Migration / import processing

How are content items imported?

The Migration Toolkit creates content items that are not present in target project. If the content item exists in target project (based on item's codename) the item will be updated, otherwise it will be created. No duplicate items will be created. The workflow of the item in target environment will be set to match the source environment.

How are assets imported?

If asset exists in target project (based on asset's codename), the asset upload will be skipped and not uploaded at all. Otherwise the asset will be created in target environment.

How are referenced content items & asset handled?

If you have a reference to a content item or asset (i.e. in linked items element, asset element, rich text element...) the migration toolkit first checks whether the referenced object exists (based on item or asset codename) and if it does, successfuly sets the reference. If the object does not exist, it will be referenced by an external_id which creates a placeholder for the item until it becomes available.

See the table below to learn how external_id is generated by default:

| Object type | Template | Sample codename of the object | Generated external_id | | ---------------- | ------------------ | ------------------------------- | ----------------------- | | Asset | asset_{codename} | my_file | asset_my_file | | Content item | item_{codename} | article | item_article |

If you need to change the way external_id is created, you may supply a custom implementation of externalIdGenerator within import / migrate functions.

Limitations

  1. Custom asset elements are not supported (= values of these elements are not exported or imported )

FAQ

I'm getting Header overflow exception

The Node.js limits the maximum header size of HTTP requests. In some cases it may be required for you to increase this limitation to be able to successfully fetch data from Kontent.ai. You can do so by using the max-http-header-size option (https://nodejs.org/api/cli.html#--max-http-header-sizesize)

Example script call:

node --max-http-header-size 150000 %USERPROFILE%\AppData\Roaming\npm\node_modules\kontent-ai-migration-toolkit\dist\cjs\lib\node\cli\app --action=export --apiKey=<key> --environmentId=<environmentId>