UNPKG

town-crier

Version:

Add multiple RSS feeds or choose from the default ones and get news directly to your command line

14 lines (10 loc) 245 B
'use strict'; const run = require('./src/runner'); const config = require('./config'); const configurator = require('./src/configurator'); configurator(config, function(err) { if (err) { throw new Error(err); } run(); });