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

TextBlocks

To make working with multiline strings convenient, Suite.js supports TEXTBLOCKs. These are essentially a type of here document, and are similar to PHP's heredocs.

It's important to note that TEXTBLOCKs do not support automatic variable substitution. Therefore, they are not a direct replacement for JavaScript Template Strings. TEXTBLOCKs are simply a way to work with multiline strings.

To indicate the beginning of a TEXTBLOCK, use three < symbols, followed by the word TEXTBLOCK. To indicate the end of a TEXTBLOCK, use the word TEXTBLOCK followed by three > symbols.

The TEXTBLOCK keyword must be fully capitalized.

TextBlock Example

var query = <<<TEXTBLOCK
	SELECT
		ID, 
		FirstName, 
		LastName, 
		Email 
	FROM 
		Employee 	
	ORDER BY 
		LastName, 
		FirstName
TEXTBLOCK>>>;

writeln( query );

© Copyright 2025 Tim Dietrich. | Legal Info