const readline = require('readline'); const rl = readline.createInterface({ input: process.stdin, output: process.stdout, completer : completer }); function completer(line) { const completions = '.help .error .exit .quit .q'.split(' '); const hits = completions.filter((c) => c.startsWith(line)); // show all completions if none found return [hits.length ? hits : completions, line]; } |
[링크 : https://nodejs.org/api/readline.html]
[링크 : https://gist.github.com/DTrejo/901104]
근데.. 해보는데 nodemon에서는 tab을 못 넘겨주도록 막는 듯?
'Programming > node.js' 카테고리의 다른 글
promise-mysql (0) | 2018.09.18 |
---|---|
node.js 동기와 비동기 그리고 promise (0) | 2018.09.18 |
node.js mysql 모듈 (0) | 2018.09.13 |
node.js 콘솔 입력 받기 (0) | 2018.09.12 |
node.js JSON.parse() (0) | 2018.09.12 |