thank you I understood now. I removed the tiddler using that and tiddlywiki wiki --build feed
is working.
The built-in electron.net.request
method is not affected by CORS, which makes it very convenient for bypassing certain restrictions, such as some GitHub APIs.
CorsProxy.io has a free tier that only works on localhost, apparently. To the extent of my understanding, it is possible to fetch RSS feeds from server environments, not directly from web browser clients. So, theoretically, it should be possible to avoid CORS by using TiddlyWiki through Node.js on localhost. And since the free tier from CorsProxy only works from localhost, some of the limitations are the same. In either case, one couldnāt simply share a flat-file TiddlyWiki and have the RSS fetch functionality work.
Has anyone ever successfully implemented RSS fetching with TiddlyWiki using a pure Node server solution?
If you are running TiddlyWiki on node.js, it is a handful of lines to implement a proxy route for the server that can be used to query cross domain URIs.
I run TW on node, and happy to give it a try (in no small part because just a few days ago I was pondering TW as an RSS reader, and so am pleased to see the thought has been looked at already, and delighted that coincidentally this thread has revived itself too)
However, Iāll need some details on what those āhandful of linesā would actually be