tools

various tools I have been using throughout the years
Log | Files | Refs | README | LICENSE

README.md (794B)


      1 # bandeno
      2 
      3 Bandcamp RSS feed proxy. Returns artist discographies and fan collections as [JSON Feed](https://jsonfeed.org/) for use in feed readers.
      4 
      5 Inspired by Pawel Grzybek's Deno Deploy article on Bandcamp RSS feeds: https://pawelgrzybek.com/generate-rss-feed-for-bandcamp-artists-using-deno-deploy/.
      6 
      7 ## Running
      8 
      9 ```sh
     10 deno task dev
     11 ```
     12 
     13 ## Usage
     14 
     15 ### Artist feed
     16 
     17 Returns a JSON Feed of all releases on an artist's Bandcamp page.
     18 
     19 ```
     20 GET /?artist=<artist>
     21 ```
     22 
     23 ### Fan collection feed
     24 
     25 Returns a JSON Feed of all albums in a fan's Bandcamp collection.
     26 
     27 ```
     28 GET /?fan=<fan>
     29 ```
     30 
     31 ## Configuration
     32 
     33 | Variable | Default     | Description        |
     34 |----------|-------------|--------------------|
     35 | `PORT`   | `8000`      | Port to listen on  |
     36 | `HOST`   | `127.0.0.1` | Host to bind to    |