Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Fido2RSS is a Node.js module and a CLI application; both make RSS feeds out of Fidonet echomail areas.
npm install mime
(in the directory of Fido2RSS) to run (unless they are used as a module for a Node-powered web application where a web server usually has the mime
package already installed anyway). This issue is fixed in Fido2RSS version 3.0.1 and newer.Latest packaged version: npm install fido2rss
Latest githubbed version: npm install https://github.com/Mithgol/fido2rss/tarball/master
The module becomes installed locally and appears in node_modules/fido2rss
. Then use require('fido2rss')
to access the module.
You may visit https://github.com/Mithgol/fido2rss#readme occasionally to read the latest README
because the package's version is not planned to grow after changes when they happen in README
only. (And npm publish --force
is forbidden nowadays.)
Latest packaged version: npm install -g fido2rss
Latest githubbed version: npm install -g https://github.com/Mithgol/fido2rss/tarball/master
The application becomes installed globally and appears in the PATH
. Then use fido2rss
command to run the application.
Instead of the above, download the ZIP-packed source code of Fido2RSS and unpack it to some directory. Then run npm install --production
in that directory.
You may now move that directory (for example, on a flash drive) across systems as long as they have the required version of Node.js installed.
Unlike the above (npm -g
), the application does not appear in the PATH
, and thus you'll have to run it directly from the application's directory. You'll also have to run node fido2rss [options]
instead of fido2rss [options]
.
After the installation you may receive an npm warning saying that node-webcrypto-ossl
(an optional dependency of JavaScript IPFS API) could not be installed. It happens if you do not have C++ build tools for Windows (or their Linux or macOS counterparts) required to build that dependency on your system, or if such tools are incomplete or outdated.
Ignore the warning. The dependency is optional and IPFS API is able to work without it.
You may run the installed application by typing in the command line:
fido2rss [options]
where [options]
is a space-separated list of the following options and their values:
(optional)
The full path (with the filename) that is used to generate a lock file.
You may use it to prevent both Fido2RSS and HPT (or any other echomail processor that supports lock files) from running simultaneously and trying to process the same echomail area.
(required)
The full path (with the filename, but without extensions) of the message base.
(required)
The areatag (echotag) of the echomail area.
(optional)
Message base type. Use --type Squish
for Squish message bases. The default type is JAM.
(required)
The full path (with the filename) that is used to generate the RSS output file.
(optional)
How many latest messages are taken from the echomail area and published to the RSS feed.
By default, 23.
(optional)
If this option is present, then UUE-encoded images are automatically decoded and put to IPFS. The given host:port
is used to contact an IPFS daemon.
If a mere --IPFS
is given (i.e. without host:port
part), the default address --IPFS localhost:5001
is used (i.e. an IPFS daemon is expected to be running locally, alongside Fido2RSS).
If even --IPFS
is missing, UUE-encoded images are left as they are (not IPFS-hosted at all), i.e. this option is off by default.
IPFS-hosted images have the following advantages:
By default (without --IPFS
option) UUE-decoded images use large RFC2397-compliant Data URI, while IPFS-hosted images have much shorter URI (only ≈67 characters each) and the RSS feed's size is reduced. This is important for RSS consumers that do not tolerate large entries. (For example, LiveJournal has some small entry size.)
End users (e.g. human readers) may install their own IPFS daemons and then use extensions (available for Firefox and for Chrome) to browse IPFS locally. It has all the usual potential advantages of P2P (peer-to-peer) systems: local storage (cache), local traffic (peering), most files are still available even if their initial sources are offline or overcrowded, etc.
(optional)
If this option and the previous (--IPFS
) option are both present, then Fido2RSS uses IPFS URLs (pointing to the default https://ipfs.io/ gateway) instead of FGHI URLs as the addresses of RSS items (and also of FGHI URLs encountered inside Fidonet messages).
For inner FGHI URLs these IPFS URLs are addresses of a small IPFS-hosted page that receives real FGHI URLs in its query string and generates a hyperlink by JavaScript. (Such page is automatically generated by Fido2RSS and published in IPFS on the fly.)
For items' FGHI URLs an intermediate web page (containing the necessary FGHI URL and the whole Fidonet message) is automatically generated, and stored in IPFS, and then hyperlinked from the RSS.
This option is designed as a workaround for RSS consumers that do not expect FGHI URLs to appear in RSS. (For example, LiveJournal simply replaces area:
with http:
in FGHI URLs, which is wrong.)
(optional)
If this option and the previous two (--IPFS
and --IPFS-URL
) options are present, then Fido2RSS uses this option's value as a username of a Twitter's user that each of the processed Fidonet messages should be attributed to. When the message is stored in IPFS, a Summary Card with Large Image will be generated for future references and stored in HTML5 representation's <head>
, but only if an image for that card can be found in the Fidonet message's text. Notes:
You may require()
the installed module and get a function that asynchronously converts Fidonet messages to RSS output.
That function accepts an object of options and a callback that receives an error (or null
) and RSS output (a string).
var Fido2RSS = require('fido2rss');
Fido2RSS(options, function(err, outputRSS){
if( err ){
// an error happened
} else {
// conversion is successful, you may use `outputRSS` now
}
});
The following properties in the object of options are processed:
options.area
— the areatag (echotag) of the echomail area. (Required.)
options.base
— the full path (with the filename, but without extensions) of the message base. (Required.)
options.msg
— how many latest messages are taken from the echomail area and published to the RSS feed. (By default, 23.)
options.type
— the message base's type. By default, 'JAM'
; can also be 'Squish'
(not case-sensitive). An unknown type is also treated as 'JAM'
.
options.IPFS
— this option is used to decide if UUE-encoded images are automatically decoded and put to IPFS. This option may have one of the following values:
undefined
— UUE-encoded images are not put to IPFS.true
— UUE-encoded images are automatically decoded and put to IPFS. A local IPFS daemon (localhost:5001) is contacted.'host:port'
— Same as above, but a remote IPFS daemon is contacted (the given 'host:port'
string is used as its address).options.IPFSURL
— if this option is a truthy value and the previous option (options.IPFS
) is not undefined
, then Fido2RSS uses IPFS URLs (pointing to the default https://ipfs.io/ gateway) instead of FGHI URLs as the addresses of RSS items, and also of FGHI URLs encountered inside Fidonet messages.
area:
with http:
in FGHI URLs, which is wrong.)options.areaPrefixURL
— the prefix to be added before area://…
URLs that appear in RSS output. (For example, if .areaPrefixURL
is 'https://example.org/fidonet?'
, then the URL 'https://example.org/fidonet?area://Test/'
will appear instead of original 'area://Test/'
.) Some WebBBS support is necessary on the server side (of the given server) for such URLs to be working.
area://…
URLs instead of RFC2397-compliant data:
URLs.options.IPFS
). Only other files are affected..areaPrefixURL
is not defined. It means that prefixing does not happen and files use data:
URLs (unless put to IPFS).data:
URLs tend to be rather lengthy).
Note: options.IPFSURL
and options.areaPrefixURL
are mutually exclusive. Therefore options.areaPrefixURL
works only if options.IPFSURL
is a falsy value or if options.IPFS
is undefined
.
options.twitter
— if this option's value is a string and the previous two options (options.IPFS
and options.IPFSURL
) are in effect, then Fido2RSS uses this option's value as a username of a Twitter's user that each of the processed Fidonet messages should be attributed to. When the message is stored in IPFS, a Summary Card with Large Image will be generated for future references and stored in HTML5 representation's <head>
, but only if an image for that card can be found in the Fidonet message's text. Notes:
It is necessary to install JSHint for testing.
npm install jshint -g
) or locally (npm install jshint
in the directory of Fido2RSS).After that you may run npm test
(in the directory of Fido2RSS). Only the JS code errors are caught; the code's behaviour is not tested.
Note: if you also test a generated local RSS file by dragging and dropping it to Firefox, the file is not recognized as RSS. That's a known Firefox bug (#420004) discovered in 2008.
MIT License (see the LICENSE
file), with the following exceptions:
The file redirector/jquery.min.js
contains jQuery under the terms of jQuery's license.
The file redirector/underscore-min.js
contains Underscore.js under the terms of Underscore's license.
The file redirector/jsload.gif
is generated on http://ajaxload.info/ where the terms of the Do What The Fuck You Want To Public License are said to apply.
FAQs
Makes RSS feeds out of Fidonet echomail areas.
The npm package fido2rss receives a total of 85 weekly downloads. As such, fido2rss popularity was classified as not popular.
We found that fido2rss demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.