Hashnode Get Latest Post Title

node v11.15.0
version: 1.0.0
endpointsharetweet
This is a playground to test JavaScript. It runs a completely standard copy of Node.js on a virtual server created just for you. Every one of npm’s 300,000+ packages are pre-installed, so try it out:
// Create new API object and set the domain and namespace path const hn = new (require('hashnode').Hashnode)('https://hashnode.com', '/ajax'); // Then query the API by using high-level convenience methods (async () => { // Get a feed iterator const feed = hn.feed.getRecentFeed(); // Get the first post const mostRecentPost = await feed.next(); // Output the post title console.log(`The latest post is: '${mostRecentPost.value.title}'!`); })().catch(console.error);
Loading…

no comments

    sign in to comment