- Search any query inside your terminal
- Top 10 threads
- Order the results in ascending/descending order
- Sort the results via relevance/votes/activity/creation
# install the cli globally
npm i -g cli-stackoverflow
# use it via npx
npx cli-stackoverflow
You can run the CLI by executing following commands inside the terminal:
stack
- Right → key – Next thread
- Left ← key – Prev thread
- Up ↑ key – Next Answer
- Down ↓ key – Prev Answer
# CLI help
stack --help
# Order results in ascending order
stack --asc
# Sort results according to the most activity
stack --activity
# Sort results according to votes
stack --votes
# Sort results according to the creation
stack --creation
- MIT