Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kovart/seoterminal
🔬 SEO Keyword Explorer written in Go
https://github.com/kovart/seoterminal
application golang keyword seo terminal
Last synced: about 1 month ago
JSON representation
🔬 SEO Keyword Explorer written in Go
- Host: GitHub
- URL: https://github.com/kovart/seoterminal
- Owner: kovart
- License: mit
- Created: 2019-04-22T12:42:06.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2019-06-16T10:25:19.000Z (over 5 years ago)
- Last Synced: 2024-06-19T04:18:52.358Z (6 months ago)
- Topics: application, golang, keyword, seo, terminal
- Language: Go
- Homepage:
- Size: 76.8 MB
- Stars: 4
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: history.go
- License: LICENSE
Awesome Lists containing this project
README
# Seoterminal
This app helps to work with very large CSV-files of **SEO keywords**.
It's fully written on GoLang so it gives the maximum of possible performance.
The user interface is terminal-based so you won't feel any lags or freezing.> It was my first GoLang experience. The project is currently not maintained.
## Features
- Search by keyword
- Grouping by lemmatized words
- Various types of sorting
- Cut groups into separeted files
- Expand nested groups as deep as you want
- History with the ability to restore states## How to run
To create a new project:
```sh
$ ./tool -p -f
```
To load existing project:
```sh
$ ./tool -p
```## Hotkeys
* + : Save cluster into separeted file
* - : Save cluster into separeted file in `removed` folder
* Ctrl + A : Reset root cluster
* Ctrl + K : Set the current cluster as root
* Ctrl + D : Remove the current cluster as root
* Ctrl + S : Save the current cluster as root
* Alt + H and Esc : Open and Close history
* Tab and Shift + Tab : Nivagation## How to build
The first you need to install all dependencies:
```sh
$ go get .
```
Then build the runnable file:
```sh
# For windows:
$ go build -o tool.exe
# For Linux/MacOS:
$ go build -o tool
```## Dependencies
* [tview](https://github.com/rivo/tview)
* [csvutil](https://github.com/jszwec/csvutil)