A Fred2 API wrapper
npm install node-fred --save
import Fred from 'node-fred';
const fred = new Fred(API_KEY);
function getCategory(categoryID) {
fred.categories
.getCategory(125)
.then((res) => {
console.log('Category', res);
})
.catch((err) => {
console.error('Error', err);
});
}
getCategory(125);
import Fred from 'node-fred';
const fred = new Fred(API_KEY);
async function getCategory(categoryID) {
try {
const category = await fred.categories.getCategory(categoryID);
console.log('Category', res);
} catch (err) {
console.error('Error', err);
}
}
getCategory(125);