• Downloading & Installing
• Running
• Examples
Cryptography
• hashSHA256
• hmacSHA256
• hashSHA512
• hmacSHA512
• hashMD5
• hmacMD5
File System
• fileExists
• fileRead
• fileWrite
• folderExists
• unzip
• zip
Networking
• curlExecute
• nsapiExecute
Operating System
• shellExecute
Text Encoding
• base64Decode
• base64Encode
Utilities
• abort / halt / quit
• info
• infoRefresh
• sleep
• stringIndent
• uuidGenerate
Suite.js supports JavaScript modules based on the CommonJS modules specification.
Note that modules must be available locally. You cannot load a module over HTTP / HTTPs.
In this example, we're loading the popular Moment.js JavaScript library, and then using it to display the current date and time.
var moment = require( 'moment.min.js' ); writeln( "The current date and time is: " ); writeln( moment().format( "MMMM DD, YYYY @ h:mm a" ) );
© Copyright 2025 Tim Dietrich. | Legal Info