imgcat

Display image in iTerm2 version 2.9+

Usage no npm install needed!

<script type="module">
  import imgcat from 'https://cdn.skypack.dev/imgcat';
</script>

README

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