Suite.js Documentation

Introduction


Getting Started

• Downloading & Installing
• Running
Examples


Technical Support


Functions

Cryptography
• hashSHA256
• hmacSHA256
• hashSHA512
• hmacSHA512
• hashMD5
• hmacMD5

File System
fileExists
fileRead
fileWrite
folderExists
unzip
zip

Input / Output
beep
prompt
write
writeln

Networking
curlExecute
• nsapiExecute

Operating System
shellExecute

Text Encoding
base64Decode
base64Encode


Advanced Topics

Modules

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.

modules Example

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