Security News
Node.js EOL Versions CVE Dubbed the "Worst CVE of the Year" by Security Experts
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
mendixplatformsdk
Advanced tools
The Mendix Platform SDK can be used to call Mendix Platform APIs. It also integrates with the Mendix Model SDK for working on temporary online working copies of Mendix projects.
At the moment, the Platform SDK implements the following functionality:
To use the Mendix Platform SDK, you need a Personal Access Token with the right scopes. Follow this guide to create a Personal Access Token.
Warning: Do not put the Personal Access Token inside your source code! Instead, pass it to your script using an environment variable. The Platform SDK automatically tries to get the Personal Access Token from the environment variable MENDIX_TOKEN.
To set up your development environment and create your first script, please follow the guide.
Here is a small example script that shows the main APIs of the Platform SDK.
import { MendixPlatformClient } from "mendixplatformsdk";
async function main() {
// Create a Platform SDK client. This will automatically read
// your Personal Access Token from the environment variable MENDIX_TOKEN.
const client = new MendixPlatformClient();
// Create a new app in the Mendix Developer Portal. This will also create
// a new Team Server repository based on the Blank App template.
//
// If you want to use an existing app, you can use the following:
// const app = client.getApp("existing-app-id");
const app = await client.createNewApp("My First App", { repositoryType: "git" });
// Create a temporary working copy on the Model Server based on the main
// line of the Team Server repository.
//
// If you want to use an existing working copy, you can use the following:
// const workingCopy = app.getOnlineWorkingCopy("existing-working-copy-id");
const workingCopy = await app.createTemporaryWorkingCopy("main");
// Open the working copy using the Model SDK.
const model = await workingCopy.openModel();
// Show the names of all the modules in the app model.
console.log("All modules in the model:");
for (const module of model.allModules()) {
console.log(` * ${module.name}`);
}
// Rename the first module.
model.allModules()[0].name = "RenamedModule";
await model.flushChanges();
// Commit the changes back to the Team Server.
await workingCopy.commitToRepository("main", { commitMessage: "Rename the first module" });
// Create a Repository object to get info about its branches and commits.
const repository = app.getRepository()
// Show the commit messages in the main branch.
// The response is paginated using cursor-based pagination.
console.log("Last commits in main branch:");
const commits = (await repository.getBranchCommits("main")).items;
for (const commit of commits) {
console.log(` * ${commit.message}`);
}
// Delete the app.
await app.delete();
}
// Run the 'main' function and report any errors.
main().catch(error => {
console.log("ERROR: An error occurred.", error);
process.exit(1);
})
FAQs
Mendix Platform SDK
The npm package mendixplatformsdk receives a total of 49 weekly downloads. As such, mendixplatformsdk popularity was classified as not popular.
We found that mendixplatformsdk demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 5 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.