Skip to content

Latest commit

 

History

History
38 lines (28 loc) · 1.09 KB

README.md

File metadata and controls

38 lines (28 loc) · 1.09 KB

Artemis API

This repo contains the TypeScript bindings for creating scripts for artemis.

An in depth guide is documented at https://puffycid.github.io/artemis-api

Quick Start

  1. Download deno
  2. Install a support text editor or IDE. Both VSCodium and VSCode have been tested
  3. Install the deno extension for you preferred text editor or IDE
  4. Create a deno project (ex: deno init processListings)
  5. 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