iterm2-image

1.0.1 • Public • Published

node-iterm2-image

Node.js bindings to display images in iTerm2 (nightly builds only).

iterm2-image

Install

npm install iterm2-image

Usage

var drawInIterm = require('iterm2-image');

Load (and display) an image from a filepath:

drawInIterm('./path-to-file.png', function () {
imgLoader('./path-to-file.png', function (err) {
  if (err) { throw err; }
  console.log('done!');
});

Easy, huh? Now using streams:

var http = require('http');
 
var img = 'http://your/image';
 
http.get(img, function(res) {
  if (res.statusCode === 200) {
    drawInIterm(res, function () {
      if (err) { throw err; }
      console.log('done!');
    });
  }
});

TODO

  • Parametrize output stream.
  • Return something meaningful in callback.

Credits

Inspired by iTerm2 Site image documentation section and Python Bindings.

Nyan Cat image obtained from here.

Readme

Keywords

none

Package Sidebar

Install

npm i iterm2-image

Weekly Downloads

10

Version

1.0.1

License

none

Last publish

Collaborators

  • pose