Getting Started 🚀
Prepare your environment​
Download and install the latest version of Rawen (Apply to whitelist here).
Create your first command​
We will create a simple command that will exectue a simply open the app and display "Hello world".
Variant 1: Inbound IDE​
- Open the Rawen app.
- Route to "Settings" and the "Commands" tab and hit the "Add" button
- Add a new Action and select "Client Code"
- Now copy this code into the editor:
await openApp();
await addResult("Hello world!");
- Hit the "Debug" button
Variant 2: SDK​
- Clone the Command Maker repository from here
- Open project and paste in the same code as above into the
index.ts
. - Run the project by typing
npm run start
in the terminal.