Stuft
A simple news API. Use at your own risk.
API
The stuft module exposes one function that handles network requests and parsing. It returns a Promise, meaning you can also use the async/await syntax.
You can call the stuft
function with several options. You can mix these options except when id
is present, then limit
and section
have no effect. Find out what fetchOptions
you can pass in here: https://github.github.io/fetch/#options.
Examples:
Getting articles
import stuft from "stuft";
(async () => {
const articles = await stuft();
for (const article of articles) {
console.log(article.id, article.title);
}
})();
Getting articles from a specific section
import stuft, { Section } from "stuft";
(() => {
stuft({ section: Section.Business })
.then((articles) => {
for (const article of articles) {
console.log(article.id, article.title);
}
})
.catch((err) => {
console.error(err);
});
})();
Getting more than 5 articles
import stuft from "stuft";
(async () => {
const articles = await stuft({ limit: 20 });
for (const article of articles) {
console.log(article.id, article.title);
}
})();
Getting a specific article
import stuft from "stuft";
(async () => {
const articles = await stuft({ id: 109912957 });
const article = articles[0];
console.log(article.id, article.title);
})();