npm.io
1.0.1 • Published 8 years ago

inquirer-file

Licence
MIT
Version
1.0.1
Deps
7
Size
13 kB
Vulns
6
Weekly
0

inquirer-directory

Relative File prompt for inquirer

Installation

npm install --save inquirer-file

Features

  • Support for symlinked files
  • Vim style navigation
  • Search for file with "/" key
Key Maps
  • Press "/" key to enter search mode.
  • Press "-" key to go up (back) a directory.

Usage

This prompt is anonymous, meaning you can register this prompt with the type name you please:

inquirer.registerPrompt('file', require('inquirer-file'));
inquirer.prompt({
  type: 'file',
  ...
})

Change file to whatever you might prefer.

Options

Takes type, name, message, basePath, ext properties.

See inquirer readme for meaning of all except basePath and ext.

basePath is the relative path from your current working directory ext is the file extension for the file

Example
inquirer.registerPrompt('file', require('inquirer-file'));
inquirer.prompt([{
  type: 'file',
  name: 'from',
  message: 'Where you like to put this component?',
  basePath: './src',
  ext: '.js'
}], function(answers) {
  //etc
});

See also example.js for a working example

License

MIT

Keywords