0.0.3 • Published 4 years ago
reddit.stories v0.0.3
reddit.stories
A simple node module to fetch reddit stories
How to use?
For getting a post by url
import story from './reddit/stories.js'
/**
* Showing the eample usage
*/
story.FetchPostbyLink(
"LINK TO REDDIT POST"
)
.then((data) => {
console.log('FetchPost Example:');
console.log(data);
});
For getting a post by ID
import story from './reddit/stories.js'
/**
* Showing the eample usage
*/
story.FetchPostbyID(
"ID OF A REDDIT POST"
)
.then((data) => {
console.log('FetchPost Example:');
console.log(data);
});