├── .gitignore ├── .npmignore ├── .travis.yml ├── README.md ├── example ├── tech-example.js └── xml │ └── tech-example.xml ├── lib └── index.js ├── package.json └── test └── test.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .idea 3 | *.log 4 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | /test/ 2 | /example/ 3 | /.idea/ 4 | *.log 5 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awocallaghan/node-rss-combiner/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awocallaghan/node-rss-combiner/HEAD/README.md -------------------------------------------------------------------------------- /example/tech-example.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awocallaghan/node-rss-combiner/HEAD/example/tech-example.js -------------------------------------------------------------------------------- /example/xml/tech-example.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awocallaghan/node-rss-combiner/HEAD/example/xml/tech-example.xml -------------------------------------------------------------------------------- /lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awocallaghan/node-rss-combiner/HEAD/lib/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awocallaghan/node-rss-combiner/HEAD/package.json -------------------------------------------------------------------------------- /test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awocallaghan/node-rss-combiner/HEAD/test/test.js --------------------------------------------------------------------------------