imgcat

2.3.0 • Public • Published

imgcat NPM version NPM downloads

This module is a high level wrapper of SindreSorhus's term-img, to display images from both URL and file path. Actually this requires iTerm 2.9+ too.

Install

$ npm install --save imgcat

Usage

const imgcat = require('imgcat')
 
// print image from file
imgcat('a.gif')
  .then(image => {
    console.log(image)
  })
  .catch(e => {
    console.log(e.name)
  })
 
// print image from url
// console.log directly
imgcat('http://path/to/image', {log: true})

API

imgcat(input, [options, events])

input

Type: string

Image path or URL.

options

term-img2 options. See https://github.com/sindresorhus/term-img#api.

events

Type: object

before

Type: function

Everything started.

after

Type: function

Everything done.

beforeDownload

Type: function

The download is started.

afterDownload

Type: function

The download is done.

Related

License

MIT © EGOIST

Readme

Keywords

Package Sidebar

Install

npm i imgcat

Weekly Downloads

133

Version

2.3.0

License

MIT

Last publish

Collaborators

  • kchan