# Modyo CLI
The Modyo Command Line Interface (CLI) is a tool based on two fundamental principles: acceleration and integration, implemented through the get
and push
commands, respectively.
# Benefits of the Modyo CLI
- Local work: Allows you to create widgets of any size or complexity from your local environment.
- Local repository storage: Facilitates widget management and collaboration with other developers through version control systems.
- Widget reusability: Allows you to create a widget once and reuse it across multiple sites and occasions.
# Installation
To use the Modyo Command Line, you must first install it globally on your local machine. This will enable the modyo-cli
command, which allows you to initialize a project with predefined front-end architectural decisions using Modyo's base template or with an experience from the Dynamic Framework (opens new window) catalog.
You have two options to use the Modyo CLI:
- Global installation via NPM or Yarn
$ npm i -g @modyo/cli #via npm
$ yarn global add @modyo/cli #via yarn
- Run it without installation using npx
$ npx @modyo/cli #via npx
$ npx @modyo/cli@latest #via npx - pointing to a particular version
To check the installation and confirm the CLI version, run this command:
$ modyo-cli version
@modyo/cli/3.3.0 darwin-arm64v8 node-v21.2.0
Tip
In some cases, it's necessary to reload the terminal profile or start a new session for the modyo-cli
command to be available.
Modyo offers the ability to configure autocompletion for CLI commands. To get instructions on how to set it up, run one of the following commands:
$ modyo-cli autocomplete zsh
# or
$ modyo-cli autocomplete bash
# Environment Configuration
The next step is to configure your project to facilitate widget loading on the Modyo platform and their inclusion in pages. Although you can specify everything as parameters in the push
call, it's recommended to define a set of environment variables in a .env
file. This file will allow you to specify attributes such as the account URL, the site where it will be hosted, and the access token, among others.
# Previous actions
Get a Modyo access token: To get the token, you need to have a user or create one with at least the role of
site developer-cli
on the sites or stages where you'll deploy your widget. Once the user is created, you can configure an access token for them. This token will be used to configure and activate deployments on the platform.Identify the application where you'll publish: To get your application's ID, go to your application summary. It's recommended to use this value whenever possible. If you need to use the site host, you'll find it in the general section of your application configuration.
# .env file configuration
After obtaining your application information and generating the required tokens, configure the .env
file with the corresponding data.
You can use the example file .env.example
included in the base template. This file contains the necessary predefined variables and a brief description of each one.
# Base URL of your Modyo organization
MODYO_ACCOUNT_URL=https://advocate.modyo.cloud/
# Either the host or the ID where you will deploy your micro frontend (not both)
# MODYO_SITE_HOST=my-site
MODYO_SITE_ID=77
# Token for authorizing the deployment, obtained from Modyo
MODYO_TOKEN=gT0ogW43lSy4nV9cYtc_hH0i_sUNq01q-12ptFzoW8
# Major version of the Modyo platform where the deployment will take place (8, 9 or 10)
MODYO_VERSION=10
# Directory containing the micro frontend bundle
MODYO_BUILD_DIRECTORY=build
# Name to identify your Micro Frontend in Modyo
MODYO_WIDGET_NAME=my-project
# Directive necessary for safely removing some libraries from the liquid parser
MODYO_DISABLE_LIQUID_REGEX=raw
# Description of variables in .env
MODYO_ACCOUNT_URL
URL of the domain where the deployment will be made in Modyo.MODYO_SITE_HOST
Host of the site where you want to deploy the widget. Not necessary if you specify the site ID.MODYO_SITE_ID
ID of the site where the deployment will be made.MODYO_TOKEN
User access token for deployments.MODYO_VERSION
Modyo platform version. For older versions it's 8 and the current one is 10.MODYO_BUILD_DIRECTORY
Name of the folder containing the build result, such as "dist" or "build" depending on the framework used.MODYO_WIDGET_NAME
Name the widget will have after being deployed to the platform.MODYO_DISABLE_LIQUID_REGEX
Defines a regular expression to select files that need to disable Liquid usage, for example, template files where the definition or use of variables is likely to collide with Liquid usage.
# Initializing a New Project
The quickest and easiest way to create your first widget is by using our framework's React base template through the get
command.
$ modyo-cli get dynamic-react-base-template my-project-name
This initializes a functional project to start new development.
Modyo also has a set of financial experience templates that further streamline the development of solutions in the digital banking and financial industry realm. You can find information about these experiences and how to obtain their templates in the Experiences (opens new window) section of the Dynamic Framework (opens new window) documentation.
Tip
All Dynamic Framework (opens new window) templates have a README file with information about their requirements and usage.
An organization can also create its own templates to customize the initialization process. To obtain a custom template, use the organization
option.
$ modyo-cli get --organization=myOrganization my-custom-template-repo my-project-name
From this point, you already have a functional project and can get its dependencies and run the integrated server.
$ cd my-project-name
$ npm install
$ npm run start
In a web browser, visit http://localhost:8081/
(opens new window) to see the initialized project.
# CLI Commands
The available commands in the Modyo CLI and the description of each of their options are:
# modyo-cli (-v|--version|version)
Prints the version of modyo-cli
.
$ modyo-cli (-v|--version|version)
@modyo/cli/3.3.0 darwin-arm64v8 node-v21.2.0
# modyo-cli help
Shows contextual help for the indicated command.
USAGE
$ modyo-cli help [COMMAND]
ARGUMENTS
autocomplete Display autocomplete installation instructions
get Pull a widget from our catalog into a new directory
help Display help for modyo-cli
push Push widget to Modyo platform
# modyo-cli autocomplete
Shows autocomplete instructions, if the option is configured.
USAGE
$ modyo-cli autocomplete [SHELL]
ARGUMENTS
SHELL shell type
OPTIONS
-r, --refresh-cache Refresh cache (ignores displaying instructions)
EXAMPLE
$ modyo-cli autocomplete
$ modyo-cli autocomplete bash
$ modyo-cli autocomplete zsh
$ modyo-cli autocomplete --refresh-cache
# modyo-cli get
The get
command is used to obtain a widget template from our experience catalog (opens new window) using a token provided by Modyo.
USAGE
$ modyo-cli get NAME [DIRECTORY]
ARGUMENTS
NAME The name of the widget
DIRECTORY Name of directory to init
OPTIONS
-f, --force Override folder if exist
-h, --help Output usage information
-o, --organization [default: modyo] Github organization
-x, --no-install Don't install packages
EXAMPLE
$ modyo-cli get name [directory]
# modyo-cli push
Integrates a Vue-written widget to the selected Modyo Platform site.
USAGE
$ modyo-cli push NAME
ARGUMENTS
NAME The name of the widget
OPTIONS
-b, --build-command=build-command [default: build] Build command in package.json
-d, --build-directory=build-directory [default: dist] Build directory path
-h, --help Output usage information
-i, --site-id=site-id Id of the site where the widget will be pushed
-l, --disable-liquid Disable Liquid
-n, --site-host=site-host Host of the site where the widget will be pushed
-p, --publish Force widget publication
-t, --token=token (required) Modyo Api token
-u, --account-url=account-url (required) URL of your Modyo account ex("https://account.modyo.com")
-v, --version=9|10 [default: 10] Version of Modyo platform
EXAMPLE
$ modyo-cli push <NAME>
# modyo-cli preview
The preview
command allows you to preview a widget locally to debug its code in a local environment before publishing it.
# Requirements
To use the preview
command, make sure you meet the following requirements:
- A properly configured .env (opens new window) file. The
MODYO_ACCOUNT_URL
,MODYO_SITE_HOST
orMODYO_SITE_ID
andMODYO_TOKEN
fields are required. - A local server running with the widget you want to preview.
# Steps to preview a widget
Once you have your .env
file configured and your project running on the local server, follow these steps:
- Open a new terminal window.
- Run the
modyo-cli preview
command.
Important
To visualize a change, you must manually refresh your web app. Click refresh to load the changes.
# Default variables
Modyo uses default variables for widget previewing, you can modify them as needed. The predefined variables are:
MODYO_LOCAL_PORT
: Local server port (default:8080
)MODYO_LOCAL_DOM_ID
: The ID of the widget container element (default:widgetName
)MODYO_LOCAL_ENTRY_JS
: The main JavaScript file (default:main.js
)
Additionally, you can select whether you want to preview your widget in the published version of your site or in the editable version. To do this, click the checkbox below templates. The text will change from published to editable.
These commands allow you to select the local entry points you want to use.
OPTIONS
-p, –port=<value> [default: 8080) Deploy port local widget running
-s, –dom-id=<value> [default: widgetName] Container id of the widget
-j, –entry-js=<value> [default: main.js] Entry JS file of the widget
EXAMPLE
MODYO_LOCAL_PORT=8080
MODYO_LOCAL_DOM_ID=widgetName
MODYO_LOCAL_ENTRY_JS=main.js
# Code splitting
Widgets allow you to develop complex functionalities in your Modyo web applications, thus increasing the functionality of your sites.
However, when including external libraries or increasing the complexity of a widget, you may face excessive loading times or exceed the size limits established for widgets in Modyo, which negatively affects both the development and user experience.
The code splitting technique allows you to divide your widget code into components that load on demand or in parallel, solving these problems. The benefits of code splitting include:
- Reduction in loading speed.
- Improvement in interaction time.
- Elimination of widget size restrictions.
- Performance increase.
# CLI commands for code splitting
With the Modyo command line interface (CLI), you can publish and update a widget developed externally or one in which you have implemented code splitting.
When you create a widget with Modyo CLI, it will have a tag with the CLI text next to its name.
In the case of widgets created with code splitting, you must specify which is the main file and which are the chunks that will be loaded dynamically, as required.
To package a file as zip in Modyo CLI use the following options:
- zip: packages the widget bundle to send it to the platform.
- zip-entry-css: main CSS file of the widget.
- zip-entry-js: main JS file of the widget.
Example:
modyo-cli push --zip --zip-entry-css=main.css --zip-entry-js=main.js
# Deployment
Once your widget is finished, you can prepare it for publication with the build
command.
This command will perform the necessary actions to prepare your widget for production, including cleaning and minification of the final files:
$ npm run build
To send it to Modyo, use the push
command. This command uses your configurations to select a target site or stage and check if the widget already exists in Modyo. Depending on the case, it will create or update it on the platform.
$ modyo-cli push
You can immediately publish the micro-frontend on the platform using the -p
parameter.
$ modyo-cli push -p
Attention
The token owner user must have a role of site reviewer or admin on the site where you are deploying the widget for publication to be carried out correctly.
Once a widget is deployed and published in Modyo, it's available to be used on the pages of the site it belongs to.
If you have defined variables, their values can be specified at a global level or particular to each widget instance.