npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@webtender/webav-sdk-js

v0.3.2

Published

Web Anti-Virus SDK for JavaScript Backends. Powered by WebTender.host

Downloads

15

Readme

WebAV SDK for JavaScript / TypeScript

Features

Scan user uploaded files for viruses using the WebTender WebAV API. Improve the security of your application by scanning files for viruses before they are served to your users.

  • Scan files by URL
  • Scan files by uploading
  • Query file status
  • Get recently scanned files

TypeScript support!

Asynchronous Scanning

Compatible with light weight Node.js servers with limited memory.

This package simply implements the WebAV REST API, making it very light weight and easy to get scanning today.

Learn more here: WebAV API Docs

Installation

Pick your poison:

npm install --save @webtender/webav-sdk-js
pnpm install @webtender/webav-sdk-js
yarn add @webtender/webav-sdk-js
bun add @webtender/webav-sdk-js

Get your API Key

You can get your API key from the WebTender Console

View pricing here

Usage

The client will automatically look for a process.env variables to get the API key and secret.

You can place these in a .env and use the dotenv package.

WEBTENDER_API_KEY=your-api-key
WEBTENDER_API_SECRET=your-api-secret

Simply construct with no arguments to use the environment variables.

import WebAV from '@webtender/webav-sdk-js';
import dotenv from 'dotenv';

// Load .env
dotenv.config();

const av = new WebAV();

Alternatively use the constructor to pass the API key and secret. No need for dotenv in this case.

import WebAV from '@webtender/webav-sdk-js';

const av = new WebAV('your-api-key', 'your-api-secret');
const av = new WebAV();

// You can scan by a public URL, or a signed S3 url.
const queuedFile = await av.scanByUrl("https://link.testfile.org/15MB");

// Or via upload (limited to 100MB)
const fileName = "testfile.txt";
const fileStream = fs.createReadStream(fileName);
const queuedFile = await av.scanByUpload(fileStream, fileName);

You can subscribe to a webhook via the WebTender Console to get notified when the file is ready.

Or after some time you can query the status of the file

const fileStatus = await av.getStatus(queuedFile.id);

// Or await the result, this may take several minutes for large files
const scanResult = await av.waitFor(queuedFile.id);
console.log(scanResult.virus_status_label); // Hopefully => "Passed"

// Get recently scanned files
const paginatedFiles = await av.getRecentStatuses();
for (const fileStatus of paginatedFiles.data) {
  console.log(
    fileStatus.id,
    fileStatus.virus_status_label,
    fileStatus.virus_status
  );
}

Security Notice

This package is intended to be used on your server, DO NOT provide your API key to end-users!