-
Notifications
You must be signed in to change notification settings - Fork 1
Utilities
appdevelpo edited this page Apr 14, 2026
·
1 revision
The Miru Javascript runtime provides several built-in utilities and standard libraries.
Modern standard for network requests. Fully supported and recommended.
const res = await fetch("https://example.com");-
Miru.request(url): Uses@webSiteas base. -
Miru.rawRequest(url): Absolute URL request.
Import these using require():
-
linkedom: HTML/XML DOM Parser. -
crypto-js: Cryptographic algorithms (AES, SHA, etc.). -
md5: MD5 hashing. -
jsencrypt: RSA encryption. -
url: URL parsing and resolution.
-
throwError(message): Halts execution and displays an error message to the user.