├── .github └── workflows │ ├── macos-node.js.yml │ ├── ubuntu-node.js.yml │ └── windows-node.js.yml ├── .gitignore ├── .npmrc ├── README.md ├── bin └── cli.js ├── node-fzf-screenshot.gif ├── package.json ├── src └── main.js ├── test ├── animals.json ├── test.js └── youtube-search-results.json └── usage.txt /.github/workflows/macos-node.js.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talmobi/node-fzf/HEAD/.github/workflows/macos-node.js.yml -------------------------------------------------------------------------------- /.github/workflows/ubuntu-node.js.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talmobi/node-fzf/HEAD/.github/workflows/ubuntu-node.js.yml -------------------------------------------------------------------------------- /.github/workflows/windows-node.js.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talmobi/node-fzf/HEAD/.github/workflows/windows-node.js.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talmobi/node-fzf/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | package-lock=false 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talmobi/node-fzf/HEAD/README.md -------------------------------------------------------------------------------- /bin/cli.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talmobi/node-fzf/HEAD/bin/cli.js -------------------------------------------------------------------------------- /node-fzf-screenshot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talmobi/node-fzf/HEAD/node-fzf-screenshot.gif -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talmobi/node-fzf/HEAD/package.json -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talmobi/node-fzf/HEAD/src/main.js -------------------------------------------------------------------------------- /test/animals.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talmobi/node-fzf/HEAD/test/animals.json -------------------------------------------------------------------------------- /test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talmobi/node-fzf/HEAD/test/test.js -------------------------------------------------------------------------------- /test/youtube-search-results.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talmobi/node-fzf/HEAD/test/youtube-search-results.json -------------------------------------------------------------------------------- /usage.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/talmobi/node-fzf/HEAD/usage.txt --------------------------------------------------------------------------------