0.0.3 • Published 4 years ago

reddit.stories v0.0.3

Weekly downloads
-
License
MIT
Repository
github
Last release
4 years ago

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);
	}); 
0.0.3

4 years ago

0.0.2

4 years ago

0.0.1

4 years ago