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

wellness-download

v1.0.1

Published

Download a single file, pass if file can be downloaded.

Downloads

20

Readme

wellness-download

A healthcheck for the wellness module, that can be used inpdependently.

The module downloads a file and checks it against an optionally supplied hash value.

Example

Stand-alone Use

'use strict';
var wellnessDownload = require('wellness-download');

var opts = {
    file_hash: '338ff9861dd251fd21c30f040a5b831d',
    hash_type: 'md5',
    req_opts: {
        url: 'https://close5-item-image-production.s3.amazonaws.com/images/'+
             '54dedc25f6aa03c55d0005fd_200_200.jpg'
    }
};

wellnessDownload.init(opts);
wellnessDownload.file_download(function(err) {
    if (err) {
        console.error('Exiting on error', err.message);
        return;
    }
    console.log('success');
});

In Clustered Server

'use strict';
var wellness = require('wellness');
var express = require('express');
var app = express();
var numCPUs = require('os').cpus().length;
var wellnessDownload = require('./index');

var opts = {
    healthCheckUriPath: '/healthcheck',
    expressApp: app,
    workerTimeOut: 5000,
    numWorkers: numCPUs
};


var dl_opts = {
    file_hash: '338ff9861dd251fd21c30f040a5b831c',
    hash_type: 'md5',
    req_opts: {
        url: 'https://close5-item-image-production.s3.amazonaws.com/'+
             'images/54dedc25f6aa03c55d0005fd_200_200.jpg'
    }
};
wellnessDownload.init(dl_opts);

function doSomethingUseful() { wellness.workerIsWorking(); }
var cluster = require('cluster');

if (cluster.isMaster) {

    for (var i = 0; i < numCPUs; i++)
        cluster.fork();

    wellness.clusterPostForkInit(opts);
} else {
    wellness.clusterPostForkInit(opts, function(err) {
        if (err) {
            console.error(err.message);
            return;
        }

        wellness.addCheck(wellnessDownload.file_download);

        app.listen(3000, function () {
            console.log('Example app listening on port 3000!');
            doSomethingUseful();
            setInterval(doSomethingUseful, 1000);
        });
    });
}

Test the health check

curl -v http://localhost:3000/healthcheck

API

init(opts)

Initialize the wellness-download module with an options object.

Options:

  • req_opts: Options for the request module. Any valid request option can go here. The uri or url is required.
  • logger: A winston-like logger object (for logging)
  • If a hash_type and file_hash are present, the code will compute the hash for the download and compare it to the file_hash using the hash algorithm determined by hash_type.
  • hash_type: Any valid hash type for the Node.js crypto Hash class: sha256, md5, sha1, etc. To see all hashes supported, run the following code:
var crypto = require('crypto')
console.log(crypto.getHashes())

file_download(cb)

Perform the file download and, optionally, compute the file hash. Return errors, if any, in the callback.