UNPKG

886 BMarkdownView Raw
1# Fido
2
3Fetch reviews for one or more podcasts from a list of countries on the command line.
4
5## Installation
6
7```
8npm install -g @reactive/fido
9```
10
11## Configuration
12
13A default configuration is present in ./.fido. The file is in json format.
14To override the configuration it is suggested to create a file with the same syntax in
15~/.fido.
16
17```javascript
18{
19 'podcasts': [
20 {
21 'name': 'Reactive',
22 'podcastId': '1020286000',
23 'countries': ['us', 'de', 'gb', 'se', 'ca', 'at', 'au', 'se', 'nl', 'br', 'mx', 'ru', 'gr', 'ar', 'za', 'ch', 'pt']
24 },
25 {
26 'name': 'Descriptive',
27 'podcastId': '926224392',
28 'countries': ['us', 'de', 'gb', 'se', 'ca', 'at', 'au', 'se', 'nl', 'br', 'mx', 'ru', 'gr', 'ar', 'za', 'ch', 'pt']
29 }
30 ]
31}
32```
33
34## Usage
35
36```
37fido -h
38```
39
40# License
41
42MIT © [Reactivists](https://github.com/orgs/reactivepod/teams/reactivists)