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

tarikgambar

v1.0.0

Published

Save image from internet

Downloads

8

Readme

Tarikgambar

Simple image download command line tool & module for node.js. Supports image/png, image/gif, image/jpeg, image/webp types.

Tested with Node v4 and v6.

Installing

As command-line tool

npm install -g tarikgambar

As regular module

npm install tarikgambar

Breaking changes from v0 to v1

  • Removed outputDir and filename from configuration object. You should use outputPath instead.

Configuration

  • url: (String) - URL of the target image file.
  • outputType: (String) - This value should be either stream or file. Default to stream if not defined.
  • outputPath: (String) - Path to the output file, will fail if the directory is not exists. This field is not used if outputType is stream.

API

tarikgambar.pull(options, callback)

Call callback on completition with error or value that contains path to a file or response stream depending on options.outputType value.

Parameters:

  • options: (Object) - Download configuration.
  • callback: (Function(Error, String|Response) - Callback function to be called on completition.

Example 1 (stream):

tarikgambar.pull({ url: 'http://example.com/path/to/some/image.png' }, (err, response) => {
    if (err) {
        // handle error
    }

    // write stream to file or send it to browser.
    response.on('data', chunk => {
        // do something.
    });
});

Example 2 (path):

const options = {
    url: 'http://example.com/path/to/some/image.png',
    outputType: 'file',
    outputPath: '/home/winter/downloaded.png',
};

tarikgambar.pull(options, (err, path) => {
    if (err) {
        // handle error
    }

    console.log('The image file is saved to ', path);
});

tarikgambar.pullAsync(options) -> Promise<String|Response>

Return promise that will be rejecter or resolve to either path to a file or response stream depending on options.outputType value.

Example 1 (stream):

tarikgambar.pullAsync({ url: 'http://example.com/path/to/some/image.png' }).then(response => {
    // write stream to a file or send it to browser.
    response.on('data', chunk => {
        // do something.
    });
})
.catch(err => {
    // handle error
});

Example 2 (path):

const options = {
    url: 'http://example.com/path/to/some/image.png',
    outputType: 'file',
    outputPath: '/home/winter/downloaded.png',
};

tarikgambar.pullAsync({ url: 'http://example.com/path/to/some/image.png' }).then(path => {
    console.log('The image file is saved to: ', path);
})
.catch(err => {
    // handle error
});