Electrode Native
v0.41
v0.41
  • Introduction
  • INTRODUCTION
    • Overview
      • What is Electrode Native
      • Why use Electrode Native
      • What is a MiniApp
      • Electrode Native workflow
      • Native dependencies management
      • JS/Native communication
      • Requirements
      • Upgrading Electrode Native
      • Contributing
  • REFERENCE
    • Bundle Store
    • Composite
    • Container
      • What's inside
      • Publication
      • Integration
      • Initialization
      • Launching MiniApps
    • Cauldron
      • Structure
      • Setup
      • Compatibility checks
      • Guidelines
    • Manifest
      • Override
      • Native Modules
      • Configurable Modules
    • Runner
    • APIs
      • Project Generation
      • Implementation
      • Versioning
      • Guidelines
    • Bridge
      • Message Types
      • Communication
      • Leveraging APIs
    • CLI
      • Global CLI
      • Local CLI
    • GLOSSARY
  • GUIDES
    • Debugging multiple MiniApps
  • CLI COMMANDS
    • add
    • bundlestore
      • create
      • delete
      • upload
      • use
    • binarystore
      • add
      • get
      • remove
    • code-push
      • patch
      • release
      • promote
    • compat-check
    • create-api-impl
    • create-api
    • create-composite
    • create-container
    • create-plugin-config
    • publish-container
    • transform-container
    • create-miniapp
    • link
    • regen-api
    • regen-api-impl
    • run-android
    • run-ios
    • start
    • unlink
    • upgrade-miniapp
    • cauldron add
      • file
      • jsapiimpls
      • miniapps
      • nativeapp
    • cauldron config
      • get
    • cauldron del
      • file
      • jsapiimpls
      • miniapps
      • nativeapp
    • cauldron get
      • config
      • dependency
      • nativeapp
    • cauldron repo
      • add
      • clear
      • current
      • list
      • remove
      • use
    • cauldron update
      • file
      • jsapiimpls
      • miniapps
      • nativeapp
    • cauldron batch
    • cauldron regen-container
    • cauldron upgrade
    • cauldron why
    • github
      • github create-ref
      • github delete-ref
      • github align-dependencies
    • platform
      • plugins
        • list
        • search
      • config
        • set
        • get
        • del
        • list
      • install
      • versions
      • uninstall
      • use
Powered by GitBook
On this page
  • Description
  • Syntax
  1. CLI COMMANDS
  2. cauldron get

nativeapp

Description

  • Retrieve the data stored in the Cauldron for a given native application object

  • Log the data as a JSON formatted string in your terminal

Syntax

ern cauldron get nativeapp [descriptor]

Options

--descriptor

  • A partial or complete application descriptor representing which native application object to get

  • If not provided, the command will log the list of all complete native application descriptors stored in the Cauldron

--json

  • Output result as a single line JSON record.

Examples e

  • ern cauldron get nativeapp

Will log all the complete native application descriptors from the Cauldron. For example, here is a possible output :

walmart:android:17.7.0
walmart:android:17.8.0
walmart:ios:17.7.0
walmart:ios:17.8.0
testapp:android:1.0.0
  • ern cauldron get nativeapp walmart

Will log the JSON document associated to the walmart application.

  • ern cauldron get nativeapp walmart:android

Will log the JSON document associated to the walmart android application.

  • ern cauldron get nativeapp walmart:android:17.7.0

Will log the JSON document associated to version 17.7.0 of the walmart android application.

PreviousdependencyNextcauldron repo

Last updated 4 years ago