Create Your First Script (Old Versions)

Last modified: February 14, 2024

1 Introduction

In How to Set Up Your Development Environment, you set up all the development tools. Now you will create an SDK script that automatically bootstraps a new Mendix app.

2 Writing Your First Script

After setting up all the prerequisites, follow these steps to write your first script that will use the Mendix Platform SDK:

  1. In VS Code, create a file named script.ts in the same directory as your other files. The script below creates a new app, adds a new entity to the domain model, and commits the changes to the Team Server.

  2. Copy the following code to the script.ts file:

     1
     2
     3
     4
     5
     6
     7
     8
     9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    
    import { MendixSdkClient, OnlineWorkingCopy } from 'mendixplatformsdk';
    import { domainmodels } from 'mendixmodelsdk';
    
    const username = 'richard.ford51@example.com';
    const apikey = '364fbe6d-c34d-4568-bb7c-1baa5ecdf9d1';
    const client = new MendixSdkClient(username, apikey);
    
    async function main() {
        const project = await client.platform().createNewApp(`NewApp-${Date.now()}`);
        const workingCopy = await project.createWorkingCopy();
    
        const domainModel = await loadDomainModel(workingCopy);
        const entity = domainmodels.Entity.createIn(domainModel);
        entity.name = `NewEntity_${Date.now()}`;
        entity.location = { x: 100, y: 100 };
    
        try {
            const revision = await workingCopy.commit();
            console.log(`Successfully committed revision: ${revision.num()}. Done.`)
        } catch (error) {
            console.error('Something went wrong:', error);
        }
    }
    
    function loadDomainModel(workingCopy: OnlineWorkingCopy): Promise<domainmodels.DomainModel> {
        const dm = workingCopy.model().allDomainModels().filter(dm => dm.containerAsModule.name === 'MyFirstModule')[0];
    
        return dm.load();
    }
    
    main();
    
  3. Replace the username (line 7) and apikey (line 8) with the email address of your Mendix account. From your Mendix Profile, you can generate an API Key.

3 Code Explanation

The sections below explain the script.

3.1 Line 6

1
const client = new MendixSdkClient(username, apikey);

This line is where the MendixSdkClient object is instantiated.

3.2 Lines 9-10

1
2
const project = await client.platform().createNewApp(`NewApp-${Date.now()}`);
const workingCopy = await project.createWorkingCopy();

The createNewApp() call is where you actually kick off the process that will create a new app in the Mendix Platform, which will also create a commit in the Team Server repository. By using await, you are waiting for the asynchronous call for creating the app and resuming the code afterwards. The result of this call will be accessible via Studio Pro, but in order to be able to manipulate it using the SDK, you need to expose it as an online working copy. The subsequent call createWorkingCopy() will do exactly that.

3.3 Lines 12-15

1
2
3
4
const domainModel = await loadDomainModel(workingCopy);
const entity = domainmodels.Entity.createIn(domainModel);
entity.name = `NewEntity_${Date.now()}`;
entity.location = { x: 100, y: 100 };

Now that you have an online working copy, you can start manipulating the model. In this example, first you grab the default module named MyFirstModule (see the function loadDomainModel() on lines 25-29). Once you have loaded the domain model in memory with the function dm.load(), you create a new entity in the domain model and give it a name and coordinates.

3.4 Lines 22-29

1
2
3
4
5
6
try {
    const revision = await workingCopy.commit();
    console.log(`Successfully committed revision: ${revision.num()}. Done.`)
} catch (error) {
    console.error('Something went wrong:', error);
}

Once you are done with the model changes, you can commit the changes back to the Team Server by calling workingCopy.commit(). Finally, in the done block, you print a success message if things went OK, or handle the error otherwise.

For more information, see Async Await and Using Promises.

4 Compiling and Running the Script

  1. Compile the script with the TypeScript compiler into JavaScript using the following command:

    $ tsc
    

    A file named script.js should appear (or, if you named the original TypeScript file app.ts, for example, then it would be named app.js).

    The TypeScript compiler will execute in a single run to compile all the files configured in tsconfig.json. While developing your script, it can be practical to have the compiler immediately run once you make changes to your code. Use the --watch flag for tsc to monitor the files configured in the tsconfig.json file for changes and immediately run the compiler when you save the file:

    $ tsc --watch
    
  2. Run the script with node to see the results:

     1
     2
     3
     4
     5
     6
     7
     8
     9
    10
    11
    12
    
    $ node script.js
    Creating new app with name NewApp-[...] for user [...]
    Project creation for user [...] underway with job id: [...]
    Project created successfully for user [...] with id [...]
    Creating new online working copy for project [...] : NewApp-[...]
    Successfully created new online working copy [...] for project [...]: NewApp-[...]
    Successfully opened new online working copy [...] for project [...]: NewApp-[...]
    Closing connection to Model API...
    Closed connection to Model API successfully.
    Committing changes in online working copy [...] to team server project [...] branch null base revision -1
    Successfully committed changes to team server: revision 3 on branch null
    Successfully committed revision: 3. Done.
    

5 Opening the App in Studio Pro

  1. In the My Apps page of the Developer Portal, verify the app you just created is visible at the top of the list.
  2. Open the new app, and on the right side, click Edit.
  3. If you have the latest Mendix Studio Pro, it will start and load the app you just created from the Team Server.