This repo contains the TypeScript bindings for creating scripts for artemis.
An in depth guide is documented at https://puffycid.github.io/artemis-api
- Download deno
- Install a support text editor or IDE. Both VSCodium and VSCode have been tested
- Install the deno extension for you preferred text editor or IDE
- Create a deno project (ex:
deno init processListings
) - Import
artemis-api
into your project
Basic example
import { processListing } from "https://raw.githubusercontent.com/puffycid/artemis-api/master/mod.ts";
function main() {
const md5 = true;
const sha1 = false;
const sha256 = false;
const binary_info = true;
const proc_list = processListing(md5, sha1, sha256, binary_info);
return proc_list;
}
main();
Lots of example scripts can be found at artemis-scripts