Tutorial: Application.terminate

Application.terminate

Closes the application by terminating its process.

Example

async function terminateApp() {
    const app = await fin.Application.getCurrent();
    return await app.terminate();
}
terminateApp().then(() => console.log('Application terminated')).catch(err => console.log(err));