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. Install a text editor or IDE that supports TypeScript. Such as VSCodium or VSCode
  2. Create a TypeScript file (ex: main.ts)
  3. Import artemis-api into your project and start scripting!

Basic example

import { processListing } from "./artemis-api/mod";

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();

About

TypeScript bindings for creating scripts for artemis

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages