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

curlExecute Example

In this example, we're sending a GET request to the popular Star Wars API (SWAPI).

// Set the properties to use when calling the curlExecute function.
// In this example, we're only specifying the URL that the request is to be sent to.
// By default, curlExecute sends an HTTP GET request.
var properties = {}
properties.OptionURL = "https://swapi.dev/api/films/1/";

writeln( "Executing cURL command..." );
writeln;

// Call the curlExecute function, and get the result.
var curlResult = curlExecute( properties );

// The result of the curlExecute function is a JSON-encoded string.
// Parse the string to convert the string to a JavaScript object.
curlResult = JSON.parse( curlResult );

writeln( "A request was sent to:" )
writeln( curlResult.properties.OptionURL.value );
writeln;

// If cURL threw an error, the error code will be greater than zero.
if ( curlResult.errorCode > 0 ) {
	writeln( "The cURL request failed." );
	writeln( "• Error Code: " +  curlResult.errorCode );
	writeln( "• Error Message: " +  curlResult.errorMessage );
	abort;
}

writeln( "A response was received in:" )
writeln( curlResult.elapsedTime.milliseconds + "ms" );
writeln;

writeln( "The HTTP response code that was received is:" );
writeln( curlResult.responseCode );
writeln;

writeln("The HTTP response headers that were received are:" );
writeln( JSON.stringify( curlResult.responseHeaders, null, 5 ) );
writeln;

writeln( "The response content that was received is:" );	
if ( curlResult.responseHeaders[ 'Content-Type' ] == 'application/json' ) {
	var outputJSON = JSON.parse( curlResult.output );
	writeln( JSON.stringify( outputJSON, null, 5 ) );
} else {
	writeln( stringIndent( curlResult.output, 5 ) );
}
writeln;

The output from the script will look like this.

Executing cURL command...

A request was sent to:
https://swapi.dev/api/films/1/

A response was received in:
1366.148ms

The HTTP response code that was received is:
200

The HTTP response headers that were received are:
{
     "Server": "nginx/1.16.1",
     "Date": "Mon, 31 Mar 2025 19:40:08 GMT",
     "Content-Type": "application/json",
     "Transfer-Encoding": "chunked",
     "Connection": "keep-alive",
     "Vary": "Accept, Cookie",
     "X-Frame-Options": "SAMEORIGIN",
     "ETag": "\"5af12d8e740a258e0c502b480ae78f2f\"",
     "Allow": "GET, HEAD, OPTIONS",
     "Strict-Transport-Security": "max-age=15768000"
}

The response content that was received is:
{
     "title": "A New Hope",
     "episode_id": 4,
     "opening_crawl": "It is a period of civil war.\r\nRebel spaceships, striking\r\nfrom a hidden base, have won\r\ntheir first victory against\r\nthe evil Galactic Empire.\r\n\r\nDuring the battle, Rebel\r\nspies managed to steal secret\r\nplans to the Empire's\r\nultimate weapon, the DEATH\r\nSTAR, an armored space\r\nstation with enough power\r\nto destroy an entire planet.\r\n\r\nPursued by the Empire's\r\nsinister agents, Princess\r\nLeia races home aboard her\r\nstarship, custodian of the\r\nstolen plans that can save her\r\npeople and restore\r\nfreedom to the galaxy....",
     "director": "George Lucas",
     "producer": "Gary Kurtz, Rick McCallum",
     "release_date": "1977-05-25",
     "characters": [
          "https://swapi.dev/api/people/1/",
          "https://swapi.dev/api/people/2/",
          "https://swapi.dev/api/people/3/",
          "https://swapi.dev/api/people/4/",
          "https://swapi.dev/api/people/5/",
          "https://swapi.dev/api/people/6/",
          "https://swapi.dev/api/people/7/",
          "https://swapi.dev/api/people/8/",
          "https://swapi.dev/api/people/9/",
          "https://swapi.dev/api/people/10/",
          "https://swapi.dev/api/people/12/",
          "https://swapi.dev/api/people/13/",
          "https://swapi.dev/api/people/14/",
          "https://swapi.dev/api/people/15/",
          "https://swapi.dev/api/people/16/",
          "https://swapi.dev/api/people/18/",
          "https://swapi.dev/api/people/19/",
          "https://swapi.dev/api/people/81/"
     ],
     "planets": [
          "https://swapi.dev/api/planets/1/",
          "https://swapi.dev/api/planets/2/",
          "https://swapi.dev/api/planets/3/"
     ],
     "starships": [
          "https://swapi.dev/api/starships/2/",
          "https://swapi.dev/api/starships/3/",
          "https://swapi.dev/api/starships/5/",
          "https://swapi.dev/api/starships/9/",
          "https://swapi.dev/api/starships/10/",
          "https://swapi.dev/api/starships/11/",
          "https://swapi.dev/api/starships/12/",
          "https://swapi.dev/api/starships/13/"
     ],
     "vehicles": [
          "https://swapi.dev/api/vehicles/4/",
          "https://swapi.dev/api/vehicles/6/",
          "https://swapi.dev/api/vehicles/7/",
          "https://swapi.dev/api/vehicles/8/"
     ],
     "species": [
          "https://swapi.dev/api/species/1/",
          "https://swapi.dev/api/species/2/",
          "https://swapi.dev/api/species/3/",
          "https://swapi.dev/api/species/4/",
          "https://swapi.dev/api/species/5/"
     ],
     "created": "2014-12-10T14:23:31.880000Z",
     "edited": "2014-12-20T19:49:45.256000Z",
     "url": "https://swapi.dev/api/films/1/"
}

© Copyright 2025 Tim Dietrich. | Legal Info