0.2.0 • Published 10 years ago

editor-in v0.2.0

Weekly downloads
21
License
BSD-2-Clause
Repository
github
Last release
10 years ago

Editor In

Opens an editor, gets the result after the process has exited

Install:

npm install editor-in

Usage:

var editorIn = require('editor-in');

// Opens process.env.EDITOR
editorIn( function( error, result ){
  // result is a Buffer
  console.log( result.toString() );
});

Editor In

API

This module exports a single function

editorIn( options, callback )

Opens a temporary file in options.editor or process.env.EDITOR and returns the result.

Options:

// Options and defaults
{
  // Editor to use Ex: 'vim'
  editor:         process.env.EDITOR || 'vi'
  // Initial content for the editor
, content:        ''
  // Prefix of tmp filename Ex: 'some-file-'
, tmpFilePrefix:  ''
  // Suffix of tmp filename Ex: '.md'
, tmpFilePostfix: ''
}
0.2.0

10 years ago

0.1.2

10 years ago

0.1.1

10 years ago