@evan/clamav

ClamAV client for deno

Usage no npm install needed!

<script type="module">
  import evanClamav from 'https://cdn.skypack.dev/@evan/clamav';
</script>

README

implements all non-deprecated commands in clamd

const clamav = new ClamAV({ port: 3310, host: '127.0.0.1' });
const eicar = await fetch('https://secure.eicar.org/eicar.com.txt');

console.log(await clamav.version());
console.log(await clamav.scan(eicar.body));
console.log(await clamav.scan(new Uint8Array([...])));
console.log(await clamav.scan(await Deno.open('file.txt')));