![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
reddit-api-wrapper
Advanced tools
Easy-to-use wrapper for the Reddit API. Get Reddit data more efficiently and effectively.
A simple, easy-to-use wrapper for the Reddit API. This Node.js package abstracts the complexities of interacting with Reddit's API, providing a straightforward interface for fetching posts from Reddit.
Install via npm:
npm install reddit-api-wrapper
Here's how you can use this package:
const reddit = require('reddit-api-wrapper');
// Fetch top posts from all of Reddit
reddit
.getPosts('top')
.then((posts) => console.log(posts))
.catch((error) => console.error(error));
// Fetch top posts from a specific subreddit
reddit
.getPostsBySubreddit('programming', 'top')
.then((posts) => console.log(posts))
.catch((error) => console.error(error));
s;
This package provides the following functions:
getPosts(filter)
: Fetches posts from the front page of Reddit. If a filter is provided (e.g., 'top', 'hot', 'best'), fetches posts using that filter.
getPostsBySubreddit(subreddit, filter)
: Fetches posts from a specific subreddit. If a filter is provided (e.g., 'top', 'hot', 'best'), fetches posts using that filter.
FAQs
Easy-to-use wrapper for the Reddit API. Get Reddit data more efficiently and effectively.
We found that reddit-api-wrapper demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.