Skip to main content

customize export

The customize export command allows you to export JavaScript/CSS customization settings from a Kintone app.

This feature is under early development.

Example

cli-kintone customize export \
--base-url https://${yourDomain} \
--app ${appId} \
--username ${username} \
--password ${password} \
--output customize-manifest.json

Options

See Options page for common options.

OptionRequiredDescription
--appYesThe ID of the app
--outputOutput path for the manifest file
Default to customize-manifest.json
--yesSkip confirmation

Output

Downloaded JS/CSS files are saved to directories relative to the manifest file:

{manifest-dir}/
├── customize-manifest.json
├── desktop/
│ ├── js/
│ └── css/
└── mobile/
├── js/
└── css/

The generated manifest file contains:

  • URLs for CDN resources (preserved as-is)
  • Relative paths for downloaded files (e.g., desktop/js/app.js)