New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

node-qetag

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

node-qetag

A multi-thread utility of NodeJS, calculate the hash value of the file on the qiniu cloud storage (also the etag value when the file is downloaded).

latest
Source
npmnpm
Version
1.1.1
Version published
Maintainers
1
Created
Source

node-qetag

A multi-thread utility of NodeJS, which calculate the hash value of the file on the qiniu cloud storage (also the etag value when the file is downloaded).

Base

Base on the qetag, which is the official version.

Install

$ npm i node-qetag --save

API

const qetag = require('node-qetag');

let fileList = []; // Your file list
let threads = 8 - 1; // Default is the number of your device's logical processors and minus 1

qetag(fileList, threads)
    .then(results => {
        console.log(results);
    })
    .catch(err => {
        console.log(err);
    })

Keywords

node

FAQs

Package last updated on 20 Feb 2019

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts