The CLI tool for helping with Rocket.Chat Apps.
npm install @rocket.chat/apps-cli```
npm install -g @rocket.chat/apps-cli
package we have had to implement a custom logger class.
To make usage of this you can use this.getLogger() and then do the normal console style logging.$3
The development tools provide a command to quickly scaffold a new Rocket.Chat App, simply run
rc-apps create and a new folder will be created inside the current working directory with a basic App which does nothing but will compile and be packaged in the dist folder.$3
The app description file, named
app.json, contains basic information about the app. You can check the app-schema.json file for all the detailed information and fields allowed in the app description file, the basic structure is similar to this:`
{
"id": "5cb9a329-0613-4d39-b20f-cc2cc9175df5",
"name": "App Name",
"nameSlug": "app-name",
"version": "0.0.1",
"requiredApiVersion": "^1.4.0",
"description": "App which provides something very useful for Rocket.Chat users.",
"author": {
"name": "Author Name ",
"support": "Support Url or Email"
},
"classFile": "main.ts",
"iconFile": "beautiful-app-icon.jpg"
}
`$3
The basic creation of an App is based on extending the
App class from the Rocket.Chat Apps _definition_ library. Your class also has to implement the constructor and optionally the initialize function, for more details on those check the App definition documentation.`
import {
IAppAccessors,
IConfigurationExtend,
IEnvironmentRead,
ILogger,
} from '@rocket.chat/apps-engine/definition/accessors';
import { App } from '@rocket.chat/apps-engine/definition/App';
import { IAppInfo } from '@rocket.chat/apps-engine/definition/metadata';export class TodoListApp extends App {
constructor(info: IAppInfo, logger: ILogger, accessors: IAppAccessors) {
super(info, logger, accessors);
}
public async initialize(configurationExtend: IConfigurationExtend, environmentRead: IEnvironmentRead): Promise {
await this.extendConfiguration(configurationExtend, environmentRead);
this.getLogger().log('Hello world from my app');
}
}
`$3
Currently the Rocket.Chat servers and Marketplace allow submission of zip files, these files can be created by running
rc-apps package which packages your app and creates the zip file under dist folder.$3
For uploading the app you need add to the required parameters in the .rcappsconfig already created in the apps directory. It accepts two types of objects:-1. Upload using username, password
`
{
url: string;
username: string;
password: string;
}
`
2. Upload using personal access token and userId `
{
url: string;
userId: string;
token: string;
}
`$3
To enable autocomplete for the apps cli use the command
rc-apps autocomplete