@capgo/cli

7.5.2 • Public • Published

Capgo CLI

Capgo - Instant updates for capacitor

A CLI to upload and download files from the Capgo Cloud.

You can find the most up to date version of this doc in our web doc: https://capgo.app/docs/cli/overview/

Usage

Before use the CLI, you should register here : https://capgo.app/

Then go to your account in apikey section and click in the all key to copy it.

Follow the documentation here : "https://capacitorjs.com/docs/getting-started/

📑 Capgo CLI Commands

📋 Table of Contents

🚀 Init

Alias: i

npx @capgo/cli@latest init

🚀 Initialize a new app in Capgo Cloud with step-by-step guidance. This includes adding code for updates, building, uploading your app, and verifying update functionality.

Example:

npx @capgo/cli@latest init YOUR_API_KEY com.example.app

Options

Param Type Description
-n, string App name for display in Capgo Cloud
-i, string App icon path for display in Capgo Cloud
--supa-host string Supabase host URL for custom setups
--supa-anon string Supabase anon token for custom setups

👨‍⚕️ Doctor

npx @capgo/cli@latest doctor

👨‍⚕️ Check if your Capgo app installation is up-to-date and gather information useful for bug reports. This command helps diagnose issues with your setup.

Example:

npx @capgo/cli@latest doctor

Options

Param Type Description
--package-json string A list of paths to package.json. Useful for monorepos (comma separated ex: ../../package.json,./package.json)

🔑 Login

Alias: l

npx @capgo/cli@latest login

🔑 Save your Capgo API key to your machine or local folder for easier access to Capgo Cloud services. Use --apikey=******** in any command to override it.

Example:

npx @capgo/cli@latest login YOUR_API_KEY

Options

Param Type Description
--local boolean Only save in local folder, git ignored for security.

📦 Bundle

📦 Manage app bundles for deployment in Capgo Cloud, including upload, compatibility checks, and encryption.

⬆️ Upload

Alias: u

npx @capgo/cli@latest bundle upload

⬆️ Upload a new app bundle to Capgo Cloud for distribution, optionally linking to a channel or external URL. External option supports privacy concerns or large apps (>200MB) by storing only the link. Capgo never inspects external content. Encryption adds a trustless security layer. Version must be > 0.0.0 and unique.

ℹ️ External option helps with corporate privacy concerns and apps larger than 200MB by storing only the link.

ℹ️ Capgo Cloud never looks at the content in the link for external options or in the code when stored.

ℹ️ You can add a second layer of security with encryption, making Capgo trustless.

ℹ️ Version should be greater than "0.0.0" and cannot be overridden or reused after deletion for security reasons.

Example:

npx @capgo/cli@latest bundle upload com.example.app --path ./dist --channel production

Options:

Param Type Description
-a, string API key to link to your account
-p, string Path of the folder to upload, if not provided it will use the webDir set in capacitor.config
-c, string Channel to link to
-e, string Link to external URL instead of upload to Capgo Cloud
--iv-session-key string Set the IV and session key for bundle URL external
--s3-region string Region for your S3 bucket
--s3-apikey string API key for your S3 endpoint
--s3-apisecret string API secret for your S3 endpoint
--s3-endoint string URL of S3 endpoint
--s3-bucket-name string Name for your AWS S3 bucket
--s3-port string Port for your S3 endpoint
--no-s3-ssl boolean Disable SSL for S3 upload
--key-v2 string Custom path for private signing key (v2 system)
--key-data-v2 string Private signing key (v2 system)
--bundle-url boolean Prints bundle URL into stdout
--no-key boolean Ignore signing key and send clear update
--no-code-check boolean Ignore checking if notifyAppReady() is called in source code and index present in root folder
--display-iv-session boolean Show in the console the IV and session key used to encrypt the update
-b, string Bundle version number of the bundle to upload
--link string Link to external resource (e.g. GitHub release)
--comment string Comment about this version, could be a release note, a commit hash, a commit message, etc.
--min-update-version string Minimal version required to update to this version. Used only if the disable auto update is set to metadata in channel
--auto-min-update-version boolean Set the min update version based on native packages
--ignore-metadata-check boolean Ignores the metadata (node_modules) check when uploading
--ignore-checksum-check boolean Ignores the checksum check when uploading
--timeout string Timeout for the upload process in seconds
--multipart boolean Uses multipart protocol to upload data to S3, Deprecated, use tus instead
--zip boolean Upload the bundle using zip to Capgo cloud (legacy)
--tus boolean Upload the bundle using TUS to Capgo cloud
--tus-chunk-size string Chunk size for the TUS upload
--partial boolean Upload partial files to Capgo cloud
--partial-only boolean Upload only partial files to Capgo cloud, skip the zipped file, useful for big bundle
--encrypted-checksum string An encrypted checksum (signature). Used only when uploading an external bundle.
--auto-set-bundle boolean Set the bundle in capacitor.config.json
--dry-upload boolean Dry upload the bundle process, mean it will not upload the files but add the row in database (Used by Capgo for internal testing)
--package-json string A list of paths to package.json. Useful for monorepos (comma separated ex: ../../package.json,./package.json)
--node-modules string A list of paths to node_modules. Useful for monorepos (comma separated ex: ../../node_modules,./node_modules)
--encrypt-partial boolean Encrypt the partial update files (automatically applied for updater > 6.14.4)
--delete-linked-bundle-on-upload boolean Locates the currently linked bundle in the channel you are trying to upload to, and deletes it
--no-brotli-patterns string Glob patterns for files to exclude from brotli compression (comma-separated)
--disable-brotli boolean Completely disable brotli compression even if updater version supports it
--supa-host string Supabase host URL, for self-hosted Capgo or testing
--supa-anon string Supabase anon token, for self-hosted Capgo or testing

🧪 Compatibility

npx @capgo/cli@latest bundle compatibility

🧪 Check compatibility of a bundle with a specific channel in Capgo Cloud to ensure updates are safe.

Example:

npx @capgo/cli@latest bundle compatibility com.example.app --channel production

Options:

Param Type Description
-a, string API key to link to your account
-c, string Channel to check the compatibility with
--text boolean Output text instead of emojis
--package-json string A list of paths to package.json. Useful for monorepos (comma separated ex: ../../package.json,./package.json)
--node-modules string A list of paths to node_modules. Useful for monorepos (comma separated ex: ../../node_modules,./node_modules)

🗑️ Delete

Alias: d

npx @capgo/cli@latest bundle delete

🗑️ Delete a specific bundle from Capgo Cloud, optionally targeting a single version.

Example:

npx @capgo/cli@latest bundle delete BUNDLE_ID com.example.app

Options:

Param Type Description
-a, string API key to link to your account

📋 List

Alias: l

npx @capgo/cli@latest bundle list

📋 List all bundles uploaded for an app in Capgo Cloud.

Example:

npx @capgo/cli@latest bundle list com.example.app

Options:

Param Type Description
-a, string API key to link to your account

🧹 Cleanup

Alias: c

npx @capgo/cli@latest bundle cleanup

🧹 Cleanup old bundles in Capgo Cloud, keeping a specified number of recent versions or those linked to channels. Ignores bundles in use.

Example:

npx @capgo/cli@latest bundle cleanup com.example.app --bundle=1.0 --keep=3

Options:

Param Type Description
-b, string Bundle version number of the app to delete
-a, string API key to link to your account
-k, string Number of versions to keep
-f, string Force removal
--ignore-channel boolean Delete all versions even if linked to a channel, this will delete channel as well

🔒 Encrypt

npx @capgo/cli@latest bundle encrypt

🔒 Encrypt a zip bundle using the new encryption method for secure external storage or testing. Used with external sources or for testing, prints ivSessionKey for upload or decryption.

Example:

npx @capgo/cli@latest bundle encrypt ./myapp.zip CHECKSUM

Options:

Param Type Description
--key string Custom path for private signing key
--key-data string Private signing key
-j, string Output in JSON

🔓 Decrypt

npx @capgo/cli@latest bundle decrypt

🔓 Decrypt a zip bundle using the new encryption method, mainly for testing purposes. Prints the base64 decrypted session key for verification.

Example:

npx @capgo/cli@latest bundle decrypt ./myapp_encrypted.zip CHECKSUM

Options:

Param Type Description
--key string Custom path for private signing key
--key-data string Private signing key
--checksum string Checksum of the bundle, to verify the integrity of the bundle

🔹 Zip

npx @capgo/cli@latest bundle zip

🗜️ Create a zip file of your app bundle for upload or local storage. Useful for preparing bundles before encryption or upload.

Example:

npx @capgo/cli@latest bundle zip com.example.app --path ./dist

Options:

Param Type Description
-p, string Path of the folder to upload, if not provided it will use the webDir set in capacitor.config
-b, string Bundle version number to name the zip file
-n, string Name of the zip file
-j, string Output in JSON
--no-code-check boolean Ignore checking if notifyAppReady() is called in source code and index present in root folder
--key-v2 boolean Use encryption v2
--package-json string A list of paths to package.json. Useful for monorepos (comma separated ex: ../../package.json,./package.json)

📱 App

📱 Manage your Capgo app settings and configurations in Capgo Cloud.

Add

Alias: a

npx @capgo/cli@latest app add

➕ Add a new app to Capgo Cloud with a unique app ID in the format com.test.app. All options can be guessed from config if not provided.

Example:

npx @capgo/cli@latest app add com.example.app --name "My App" --icon ./icon.png

Options:

Param Type Description
-n, string App name for display in Capgo Cloud
-i, string App icon path for display in Capgo Cloud
-a, string API key to link to your account

🗑️ Delete

npx @capgo/cli@latest app delete

🗑️ Delete an app from Capgo Cloud, optionally specifying a version to delete only that bundle.

Example:

npx @capgo/cli@latest app delete com.example.app

Options:

Param Type Description
-a, string API key to link to your account

📋 List

Alias: l

npx @capgo/cli@latest app list

📋 List all apps registered under your account in Capgo Cloud.

Example:

npx @capgo/cli@latest app list

Options:

Param Type Description
-a, string API key to link to your account

🐞 Debug

npx @capgo/cli@latest app debug

🐞 Listen for live update events in Capgo Cloud to debug your app. Optionally target a specific device for detailed diagnostics.

Example:

npx @capgo/cli@latest app debug com.example.app --device DEVICE_ID

Options:

Param Type Description
-a, string API key to link to your account
-d, string The specific device ID to debug

⚙️ Setting

npx @capgo/cli@latest app setting

⚙️ Modify Capacitor configuration programmatically by specifying the path to the setting. (e.g., plugins.CapacitorUpdater.defaultChannel). You MUST provide either --string or --bool.

Example:

npx @capgo/cli@latest app setting plugins.CapacitorUpdater.defaultChannel --string "Production"

Options:

Param Type Description
--bool string A value for the setting to modify as a boolean, ex: --bool true
--string string A value for the setting to modify as a string, ex: --string "Production"

⚙️ Set

Alias: s

npx @capgo/cli@latest app set

⚙️ Update settings for an existing app in Capgo Cloud, such as name, icon, or retention period for bundles. Retention of 0 means infinite storage.

Example:

npx @capgo/cli@latest app set com.example.app --name "Updated App" --retention 30

Options:

Param Type Description
-n, string App name for display in Capgo Cloud
-i, string App icon path for display in Capgo Cloud
-a, string API key to link to your account
-r, string Retention period of app bundle in days, 0 by default = infinite

📢 Channel

📢 Manage distribution channels for app updates in Capgo Cloud, controlling how updates are delivered to devices.

Add

Alias: a

npx @capgo/cli@latest channel add

➕ Create a new channel for app distribution in Capgo Cloud to manage update delivery.

Example:

npx @capgo/cli@latest channel add production com.example.app --default

Options:

Param Type Description
-d, string Set the channel as default
-a, string API key to link to your account

🗑️ Delete

Alias: d

npx @capgo/cli@latest channel delete

🗑️ Delete a channel from Capgo Cloud, optionally removing associated bundles to free up resources.

Example:

npx @capgo/cli@latest channel delete production com.example.app

Options:

Param Type Description
-a, string API key to link to your account
--delete-bundle boolean Delete the bundle associated with the channel
--success-if-not-found boolean Success if the channel is not found

📋 List

Alias: l

npx @capgo/cli@latest channel list

📋 List all channels configured for an app in Capgo Cloud to review distribution settings.

Example:

npx @capgo/cli@latest channel list com.example.app

Options:

Param Type Description
-a, string API key to link to your account

📦 CurrentBundle

npx @capgo/cli@latest channel currentBundle

📦 Get the current bundle linked to a specific channel in Capgo Cloud for update tracking.

Example:

npx @capgo/cli@latest channel currentBundle production com.example.app

Options:

Param Type Description
-c, string Channel to get the current bundle from
-a, string API key to link to your account
--quiet boolean Only print the bundle version

⚙️ Set

Alias: s

npx @capgo/cli@latest channel set

⚙️ Configure settings for a channel, such as linking a bundle, setting update strategies (major, minor, metadata, patch, none), or device targeting (iOS, Android, dev, emulator). One channel must be default.

Example:

npx @capgo/cli@latest channel set production com.example.app --bundle 1.0.0 --state default

Options:

Param Type Description
-a, string API key to link to your account
-b, string Bundle version number of the file to set
-s, string Set the state of the channel, default or normal
--latest-remote boolean Get the latest bundle uploaded in capgo cloud and set it to the channel
--latest boolean Get the latest version key in the package.json to set it to the channel
--downgrade boolean Allow to downgrade to version under native one
--no-downgrade boolean Disable downgrade to version under native one
--ios boolean Allow sending update to iOS devices
--no-ios boolean Disable sending update to iOS devices
--android boolean Allow sending update to Android devices
--no-android boolean Disable sending update to Android devices
--self-assign boolean Allow device to self-assign to this channel
--no-self-assign boolean Disable devices to self-assign to this channel
--disable-auto-update string Disable auto update strategy for this channel. The possible options are: major, minor, metadata, patch, none
--dev boolean Allow sending update to development devices
--no-dev boolean Disable sending update to development devices
--emulator boolean Allow sending update to emulator devices
--no-emulator boolean Disable sending update to emulator devices
--package-json string A list of paths to package.json. Useful for monorepos (comma separated ex: ../../package.json,./package.json)

🔐 Key

🔐 Manage encryption keys for secure bundle distribution in Capgo Cloud, supporting end-to-end encryption with RSA and AES combination.

🔹 Save

npx @capgo/cli@latest key save

💾 Save a base64 encryption key in the Capacitor config, useful for CI environments. Recommended not to commit the key for security.

Example:

npx @capgo/cli@latest key save --key ./path/to/key

Options:

Param Type Description
-f, string Force generate a new one
--key string Key path to save in Capacitor config
--key-data string Key data to save in Capacitor config

🔨 Create

npx @capgo/cli@latest key create

🔨 Create a new encryption key pair for end-to-end encryption in Capgo Cloud. Do not commit or share the private key; save it securely.

Example:

npx @capgo/cli@latest key create

Options:

Param Type Description
-f, string Force generate a new one

🗑️ Delete_old

npx @capgo/cli@latest key delete_old

🧹 Delete the old encryption key from the Capacitor config to ensure only the current key is used.

Example:

npx @capgo/cli@latest key delete_old

👤 Account

👤 Manage your Capgo account details and retrieve information for support or collaboration.

🔹 Id

npx @capgo/cli@latest account id

🪪 Retrieve your account ID, safe to share for collaboration or support purposes in Discord or other platforms.

Example:

npx @capgo/cli@latest account id

Options:

Param Type Description
-a, string API key to link to your account

Versions

Current Tags

VersionDownloads (Last 7 Days)Tag
5.0.0-alpha.7
0next
4.13.21-beta.20beta
7.5.2
206latest
7.0.17-beta.72beta-partial

Version History

VersionDownloads (Last 7 Days)Published
7.5.2
206
7.5.1
337
7.5.0
317
7.4.18
47
7.4.17
41
7.4.16
385
7.4.15
51
7.4.14
13
7.4.13
11
7.4.12
11
7.4.11
11
7.4.10
11
7.4.9
11
7.4.8
11
7.4.7
11
7.4.6
11
7.4.3
10
7.4.0
10
7.3.3
73
7.3.2
8
7.2.10
2,199
7.2.9
153
7.2.8
70
7.2.7
1
7.2.6
341
7.2.5
1
7.2.4
3
7.2.3
1
7.2.2
33
7.2.1
1
7.2.0
2
7.1.20
1
7.1.19
1
7.1.18
1
7.1.17
1
7.1.16
3,904
7.1.15
1
7.1.14
2
7.1.9
1
7.1.5
1
7.1.3
1
7.1.2
8
7.1.1
1
7.1.0
1
7.0.17
1
7.0.17-beta.72
7.0.17-beta.61
7.0.17-beta.51
7.0.17-beta.41
7.0.17-beta.32
7.0.17-beta.21
7.0.17-beta.11
7.0.16
1
7.0.15
1
7.0.14
1
7.0.13
1
7.0.12
1
7.0.11
1
7.0.10
1
7.0.9
1
7.0.8
1
7.0.6
1
7.0.5
2
7.0.4
0
7.0.2
1
7.0.1
0
5.0.0
60
4.34.6
773
4.34.5
1
4.34.0
8
4.33.0
0
4.32.4
29
4.30.9
17
4.30.8
3
4.30.6
1
4.30.5
0
4.30.4
0
4.30.3
0
4.30.2
0
4.30.1
0
4.30.0
0
4.29.1
26
4.29.0
7
4.28.2
1
4.28.1
18
4.28.0
0
4.27.9
7
4.27.8
0
4.27.7
0
4.27.6
0
4.27.54
4.26.14
15
4.26.13
0
4.26.12
0
4.26.11
3
4.26.10
0
4.26.9
1
4.26.8
1
4.26.6
0
4.26.5
1
4.26.4
0
4.26.3
3
4.26.2
0
4.26.0
0
4.25.6
0
4.25.5
0
4.25.4
0
4.25.1
4
4.25.0
0
4.24.2
1
4.24.1
1
4.24.0
0
4.23.2
0
4.23.1
0
4.23.0
0
4.22.11
0
4.22.8
0
4.22.7
0
4.22.6
0
4.22.5
0
4.22.4
0
4.22.3
0
4.22.2
0
4.22.1
1
4.22.0
0
4.21.36
0
4.21.35
2
4.21.34
0
4.21.33
0
4.21.30
2
4.21.29
1
4.21.16
0
4.21.15
0
4.21.14
0
4.21.13
10
4.21.12
0
4.21.11
0
4.21.10
0
4.21.9
1
4.21.8
0
4.21.7
1
4.21.6
0
4.21.5
0
4.21.4
0
4.21.3
0
4.21.2
0
4.20.8
6
4.20.7
0
4.20.6
0
4.20.5
0
4.20.4
0
4.20.3
0
4.20.2
0
4.18.2
4
4.18.1
0
4.18.0
0
4.17.0
1
4.16.6
0
4.16.5
0
4.16.4
1
4.16.3
0
4.16.2
0
4.16.1
0
4.16.0
0
4.15.2
0
4.15.1
0
4.15.0
0
4.14.16
5
4.14.15
0
4.14.14
510
4.14.13
20
4.14.12
0
4.14.11
0
4.14.10
0
4.14.9
0
4.14.4
0
4.14.3
0
4.14.2
0
4.14.1
0
4.14.0
0
4.13.34
0
4.13.33
0
4.13.32
60
4.13.31
2
4.13.30
1
4.13.29
0
4.13.27
0
4.13.26
0
4.13.25
0
4.13.24
0
4.13.23
0
4.13.21-beta.20
4.13.21-beta.10
4.13.22
0
4.13.21
0
4.13.20
0
4.13.19
0
4.13.18
0
4.13.17
0
4.13.16
0
4.13.15
0
4.13.14
46
4.13.13
14
4.13.12
0
4.13.11
0
4.13.10-beta.01
4.13.101
4.13.90
4.13.8
0
4.13.7
0
4.13.6
0
4.13.5
0
4.13.4
1
4.13.3
1
4.13.2
0
4.12.14-beta.00
4.12.14
0
4.12.12-beta.00
4.12.13
0
4.12.12
10
4.12.11
0
4.12.10
1
4.12.9
0
4.12.8
0
4.12.7
0
4.12.6
0
4.12.5
64
4.12.4
0
4.12.3-beta.00
4.12.3
0
4.12.2
0
4.12.1
0
4.12.0
0
4.11.6
0
4.11.5
2
4.11.4
0
4.11.3
0
4.11.2
0
4.11.1
0
4.11.0
0
4.10.65-beta.10
4.10.6-beta.10
4.10.53
0
4.10.52
0
4.10.51
0
4.10.50
0
4.10.49
0
4.10.48
0
4.10.47
0
4.10.46
0
4.10.45
1
4.10.44
0
4.10.43
0
4.10.42
0
4.10.41
0
4.10.40
0
4.10.39
0
4.10.38
0
4.10.37
1
4.10.36
0
4.10.35
0
4.10.34
0
4.10.33
0
4.10.32
0
4.10.31
0
4.10.30
0
4.10.29
0
4.10.28
0
4.10.27
164
4.10.26
0
4.10.25
0
4.10.24-beta.10
4.10.24
0
4.10.23
0
4.10.22
0
4.10.21
0
4.10.20
0
4.10.17
0
4.10.16
0
4.10.15
0
4.10.14
0
4.10.13
0
4.10.12
0
4.10.11
0
4.10.10
0
4.10.8
0
4.10.7
0
4.10.3
0
4.10.2
0
4.10.1
0
4.10.0
0
4.9.3
0
4.9.2
0
4.9.1
0
4.9.0
0
4.8.3
0
4.8.2
0
4.8.1
0
4.8.0
0
4.7.0
1
4.6.3
1
4.6.2
0
4.6.1
0
4.6.0
1
4.5.0
0
4.4.5
0
4.4.4
0
4.4.3
0
4.4.2
0
4.4.1
0
5.0.0-alpha.7
0
4.3.6
0
4.3.5
0
4.3.4
0
4.3.3
0
4.3.2
0
4.3.0
0
4.2.12
0
4.2.11
0
4.2.8
0
4.2.7
0
5.0.0-alpha.3
0
4.2.4
0
4.2.3
1
4.2.2
0
4.2.2-alpha.0
0
4.2.1
0
4.2.0
0
4.1.0
0
4.0.14
0
4.0.13
1
4.0.12
0
4.0.11
0
4.0.10
0
4.0.9
0
4.0.8
0
4.0.7
0
4.0.6
0
4.0.30
4.0.21
4.0.10
4.0.00
3.14.6538
3.14.634
3.14.610
3.14.601
3.14.597
3.14.580
3.14.570
3.14.550
3.14.540
3.14.530
3.14.5224
3.14.510
3.14.500
3.14.490
3.14.440
3.14.44-alpha.10
3.14.420
3.14.410
3.14.400
3.14.390
3.14.380
3.14.371
3.14.360
3.14.350
3.14.340
3.14.330
3.14.320
3.14.310
3.14.300
3.14.290
3.14.280
3.14.270
3.14.260
3.14.250
3.14.230
3.14.220
3.14.210
3.14.202
3.14.190
3.14.180
3.14.171
3.14.160
3.14.151
3.14.140
3.14.131
3.14.120
3.14.110
3.14.100
3.14.90
3.14.80
3.14.70
3.14.60
3.14.50
3.14.40
3.14.30
3.14.228
3.14.11
3.14.00
3.13.310
3.13.300
3.13.270
3.13.260
3.13.251
3.13.240
3.13.230
3.13.220
3.13.211
3.13.200
3.13.190
3.13.1810
3.13.170
3.13.160
3.13.150
3.13.140
3.13.130
3.13.110
3.13.100
3.13.90
3.13.80
3.13.70
3.13.61
3.13.50
3.13.40
3.13.30
3.13.20
3.12.70
3.12.61
3.12.51
3.12.40
3.12.30
3.12.20
3.12.10
3.12.00
3.11.70
3.11.60
3.11.50
3.11.00
3.10.210
3.10.200
3.10.190
3.10.180
3.10.170
3.10.160
3.10.150
3.10.140
3.10.130
3.10.120
3.10.110
3.10.100
3.10.90
3.10.70
3.10.60
3.10.50
3.10.40
3.10.30
3.10.20
3.10.10
3.10.00
3.9.20
3.9.11
3.9.00
3.8.50
3.8.40
3.8.30
3.8.20
3.8.10
3.8.00
3.7.10
3.7.01
3.6.70
3.6.60
3.6.50
3.6.40
3.6.30
3.6.21
3.6.10
3.6.00
3.5.60
3.5.50
3.5.40
3.5.30
3.5.20
3.5.10
3.5.00
3.4.10
3.4.01
3.3.00
3.2.00
3.1.00
3.0.140
3.0.130
3.0.120
3.0.110
3.0.100
3.0.90
3.0.80
3.0.70
3.0.60
3.0.50
3.0.40
3.0.30
3.0.20
3.0.10
3.0.01
2.7.01
2.6.50
2.6.40
2.6.30
2.5.125
2.5.110
3.0.0-alpha.10
2.5.10-alpha.00
2.5.100
2.5.90
3.0.0-alpha.00
2.5.80
2.5.70
2.5.60
2.5.51
2.5.40
2.5.30
2.5.20
2.5.10
2.5.00
2.4.70
2.4.60
2.4.50
2.4.40
2.4.31
2.4.20
2.4.10
2.4.00
2.3.270
2.3.260
2.3.250
2.3.240
2.3.230
2.3.220
2.3.210
2.3.200
2.3.190
2.3.180
2.3.170
2.3.160
2.3.150
2.3.140
2.3.131
2.3.120
2.3.111
2.3.100
2.3.90
2.3.80
2.3.71
2.3.60
2.3.50
2.3.20
2.2.100
2.2.91
2.2.80
2.2.70
2.2.60
2.2.50
2.2.40
2.2.30
2.2.20
2.2.10
2.2.00
2.1.120
2.1.110
2.1.100
2.1.90
2.1.80
2.1.70
2.1.60
2.1.50
2.1.40
2.1.20
2.1.10
2.1.00
2.0.10
2.0.00
1.6.20
1.6.10
1.6.00
1.5.10
1.5.00
1.4.40
1.4.30
1.4.10
1.4.00
1.3.10
1.3.01
1.2.30
1.2.20
1.2.10
1.2.00
1.1.130
1.1.120
1.1.100
1.1.90
1.1.80
1.1.10
1.1.00
1.0.30
1.0.20
1.0.10
1.0.00
0.16.51
0.16.40
0.16.30
0.16.20
0.16.10
0.16.00
0.15.10
0.15.00
0.14.00
0.13.140
0.13.130
0.13.120
0.13.110
0.13.100
0.13.90
0.13.80
0.13.70
0.13.60
0.13.50
0.13.40
0.13.30
0.13.20
0.13.10
0.13.01
0.12.10
0.12.00
0.11.70
0.11.60
0.11.50
0.11.40
0.11.30
0.11.20
0.11.10
0.11.00
0.10.11
0.9.01
0.8.60
0.8.50
0.8.30
0.8.20
0.8.10
0.7.40
0.7.30
0.7.20
0.7.00

Package Sidebar

Install

npm i @capgo/cli

Weekly Downloads

10,413

Version

7.5.2

License

Apache 2.0

Unpacked Size

2.07 MB

Total Files

5

Last publish

Collaborators

  • riderx