@sap/node-vsi v1.4.30
@sap/node-vsi
This project contains the VSI binding for node.js. It also includes the native libraries to run on Windows/Linux. If you need another platforms, please create a SAP support ticket to BC-XS-SEC. The library is supposed to be used for on-premise systems, because for cloud scenarios there is another solution.
Installation
The module has moved to npmjs.org npm registry. Ultimately all SAP modules will be there soon.
In order to configure the sap-internal registry you need to issue the following command:
npm install @sap/node-vsi
Afterwards you can add the module "sap-node-vsi" to the dependencies section of your package.json.
Platforms
Supported platforms: Windows | Linux | MacOS
Hello world
This standard example uses the eicar from www.eicar.org which all AV scanners has to find and detect as test virus.
var vsi = require('@sap/node-vsi');
var vsiProfile = vsi.vsiProfile;
var v = new vsiProfile("");
v.scanBytes("eicar.txt","X5O!P%@AP[4\\PZX54(P^)7CC)7}$EICAR-STANDARD-ANTIVIRUS-TEST-FILE!$H+H*", 68);
console.log("\nResult of eicar scan is rc " + v.getLastErrorCode() + " (" + v.getScanErrorName() + ") with error message: \n" + v.getLastError() + "\n" );
Getting started
From your project directory, run (see below for requirements):
$ var vsi = require('@sap/node-vsi');
8 days ago
2 months ago
2 months ago
5 months ago
10 months ago
1 year ago
1 year ago
2 years ago
3 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago