![Maven Central Adds Sigstore Signature Validation](https://cdn.sanity.io/images/cgdhsj6q/production/7da3bc8a946cfb5df15d7fcf49767faedc72b483-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Maven Central Adds Sigstore Signature Validation
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.
site-to-rss
Advanced tools
The site-to-rss library provides convenient access to the RSS.app API from applications written in JavaScript.
See the API docs for Node.js.
A minimal demo project can be found in examples directory.
Online demo is also available!
Node 8 or higher.
Install the package with:
npm install site-to-rss --save
# or
yarn add site-to-rss
The package needs to be configured with your account's api and secret key, which is available in the RSS.app Dashboard. Require it with the key's value:
const RssApp = require('site-to-rss');
const rssApp = new RssApp({ apiKey: 'c_...', apiSecret: 's_...' });
rssApp.feed
.create({ url: 'https://bbc.com' })
.then((feed) => {
console.log('Success', feed);
})
.catch((err) => {
console.log('Error', err);
});
Or using ES modules and async
/await
:
import RssApp from 'site-to-rss';
const rssApp = new RssApp({ apiKey: 'c_...', apiSecret: 's_...' });
(async () => {
const feed = await rssApp.feed.create({ url: 'https://bbc.com' });
console.log(feed.id);
})();
RSS.app maintains types.
import RssApp, { RssAppFeed } from 'site-to-rss';
const rssApp = new RssApp({ apiKey: 'c_...', apiSecret: 's_...' });
const createFeed = async () => {
const feed: RssAppFeed = await rssApp.feed.create({ url: 'https://bbc.com' });
console.log(feed.id);
};
createFeed();
Every method returns a chainable promise which can be used instead of a regular callback:
// Create a new feed and then list all feeds in account:
rssApp.feed
.create({
url: 'https://bbc.com',
})
.then((feed) => {
return rssApp.feed
.list({
limit: 10,
offset: 0,
})
.then((res) => {
console.log(res.data);
})
.catch((err) => {
// Deal with an error
});
});
Rss Generator API is freely distributable under the terms of the MIT license.
FAQs
Site to Rss API module and examples
The npm package site-to-rss receives a total of 3 weekly downloads. As such, site-to-rss popularity was classified as not popular.
We found that site-to-rss 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
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.
Security News
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
Research
Security News
Socket researchers uncovered a backdoored typosquat of BoltDB in the Go ecosystem, exploiting Go Module Proxy caching to persist undetected for years.