How to virus scan a DOCX Document in Node.JS

Cloudmersive
1 min readFeb 27, 2020

--

Need a quick solution to your virus scanning problem in Node.JS? You came to just the right place. We will have you sorted in no time.

Our initial step is to install Cloudmersive’s virus scan API client:

npm install cloudmersive-virus-api-client --save

Now that we have access to our API, we just have to call the scanFile function and the rest will be taken care of for us.

var CloudmersiveVirusApiClient = require('cloudmersive-virus-api-client');var defaultClient = CloudmersiveVirusApiClient.ApiClient.instance;// Configure API key authorization: Apikeyvar Apikey = defaultClient.authentications['Apikey'];Apikey.apiKey = 'YOUR API KEY';// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)//Apikey.apiKeyPrefix = 'Token';var apiInstance = new CloudmersiveVirusApiClient.ScanApi();var inputFile = "/path/to/file"; // File | Input file to perform the operation on.var callback = function(error, data, response) {if (error) {console.error(error);} else {console.log('API called successfully. Returned data: ' + data);}};apiInstance.scanFile(inputFile, callback);

All done. If you liked this approach, and would like to explore further API options, take a look at the rest of this series, which outlines many of the useful features available to you.

--

--

Cloudmersive
Cloudmersive

Written by Cloudmersive

There’s an API for that. Cloudmersive is a leader in Highly Scalable Cloud APIs.

No responses yet