Command
In NocoBase, commands are used to execute operations related to applications or plugins in the command line -- such as running system tasks, executing migrations, initializing configuration, or interacting with running application instances. You can define custom commands for plugins and register them through the app object, executing them in CLI as nocobase <command>.
Command Types
In NocoBase, command registration is divided into two types:
Dynamic Commands
Use app.command() to define plugin commands. Commands can only be executed after the plugin is enabled. Command files are typically placed in src/server/commands/*.ts in the plugin directory.
Example
Where:
app.command('echo')-- Defines a command namedecho..option('-v, --version')-- Adds an option to the command..action()-- Defines command execution logic.app.version.get()-- Gets the current application version.
Execute Command
Static Commands
Use Application.registerStaticCommand() to register. Static commands can be executed without enabling plugins, suitable for installation, initialization, migration, or debugging tasks. They are typically registered in the plugin class's staticImport() method.
Example
Execute Command
Where:
Application.registerStaticCommand()registers commands before the application is instantiated.- Static commands are usually used to execute global tasks unrelated to application or plugin state.
Command API
Command objects provide three optional helper methods to control command execution context:
Configuration Description
-
ipc()Generally speaking, commands execute in a new application instance. After enablingipc(), commands interact with the currently running application instance through inter-process communication (IPC), suitable for real-time operation commands (such as refreshing cache, sending notifications). -
auth()Check whether database configuration is available before command execution. If database configuration is incorrect or connection fails, the command will not continue. Commonly used for tasks involving database writes or reads. -
preload()Preload application configuration before executing the command, equivalent to executingapp.load(). Suitable for commands that depend on configuration or plugin context.
For more API methods, see AppCommand API.
Common Examples
Initialize Default Data
Reload Cache for Running Instance (IPC Mode)
Static Registration of Installation Command
Related Links
- Plugin -- Plugin lifecycle and core API
- Server Development Overview -- Overview of all server-side modules
- Test -- How to write server-side plugin tests
- Migration -- Data migration and upgrade scripts
- Plugin Development Overview -- Overall plugin development introduction
- AppCommand API -- Complete API reference for AppCommand

