|
4 | 4 |
|
5 | 5 | The Podcast API JavaScript library provides convenient access to the [Listen Notes Podcast API](https://www.listennotes.com/api/) from |
6 | 6 | applications written in JavaScript, including |
7 | | -* Server-side Node.js: See example code [PodcastAppForNode](https://github.com/ListenNotes/podcast-api-js/tree/cloudflare-workers/examples/PodcastAppForNode) |
8 | | -* Serverless [Cloudflare Workers](https://workers.cloudflare.com/) / [Cloudflare Pages](https://pages.cloudflare.com/) (w/ [functions](https://developers.cloudflare.com/pages/platform/functions/)): See example code [PodcastAppForWorkers](https://github.com/ListenNotes/podcast-api-js/tree/cloudflare-workers/examples/PodcastAppForWorkers) |
9 | | -* Client-side Javascript in web browsers: See example code [PodcastAppForBrowser](https://github.com/ListenNotes/podcast-api-js/tree/cloudflare-workers/examples/PodcastAppForBrowser) |
| 7 | +* Server-side Node.js: See example code [PodcastAppForNode](https://github.com/ListenNotes/podcast-api-js/tree/main/examples/PodcastAppForNode) |
| 8 | +* Serverless [Cloudflare Workers](https://workers.cloudflare.com/) / [Cloudflare Pages](https://pages.cloudflare.com/) (w/ [functions](https://developers.cloudflare.com/pages/platform/functions/)): See example code [PodcastAppForWorkers](https://github.com/ListenNotes/podcast-api-js/tree/main/examples/PodcastAppForWorkers) |
| 9 | +* Client-side Javascript in web browsers: See example code [PodcastAppForBrowser](https://github.com/ListenNotes/podcast-api-js/tree/main/examples/PodcastAppForBrowser) |
10 | 10 |
|
11 | 11 | Simple and no-nonsense podcast search & directory API. Search the meta data of all podcasts and episodes by people, places, or topics. It's the same API that powers [the best podcast search engine Listen Notes](https://www.listennotes.com/). |
12 | 12 |
|
@@ -79,7 +79,7 @@ const client = Client({ |
79 | 79 |
|
80 | 80 | // If you use our Podcast API with Cloudflare Workers / Pages, then use the ClientForWorkers class. |
81 | 81 | // Please make sure you store LISTEN_API_KEY as a secret. See example code: |
82 | | -// - https://github.com/ListenNotes/podcast-api-js/blob/cloudflare-workers/examples/PodcastAppForWorkers/src/index.js |
| 82 | +// - https://github.com/ListenNotes/podcast-api-js/blob/main/examples/PodcastAppForWorkers/src/index.js |
83 | 83 | // const { ClientForWorkers } = require('podcast-api'); |
84 | 84 | // const client = ClientForWorkers({ |
85 | 85 | // apiKey: env.LISTEN_API_KEY || null, |
|
0 commit comments