path-complete
v0.1.11
Published
tab path completion for stdin
Downloads
2
Readme
path-complete for Node.js by @tonylukasavage
path-complete is a Node.js package for command line TAB path completion.
Video Demonstration
Installation
npm install path-complete
Basic Usage
You can run the extremely simple test case by executing node test/test.js
or use the code below to do the same.
var pc = require('path-complete');
pc.getPathFromStdin(function(path) {
console.log('');
console.log('path: ' + path);
});