Skip to content

TypeScript bindings for creating scripts for artemis

License

Notifications You must be signed in to change notification settings

puffyCid/artemis-api

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

About

TypeScript bindings for creating scripts for artemis

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages