![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.
corsica-reddit
Advanced tools
A simple Reddit API wrapper for Javascript.
This is a JavaScript library specifically made for arctic Reddit client. It aims to make interacting with the API easier, as well as making the fetched data easier to work with. Since this library was specifically made for a single purpose, a lot of features are missing for it to be used as a general-use library (use snoowrap instead).
Well, first here's an example:
const corsica = new Corsica()
// get a post with id = un038h, and sort the comments by 'new'
const { data, error } = corsica.post('un038h').get({ sort: 'new' })
It's pretty simple and bare, but it returns something useful rather than Reddit API's mess:
// data.post.data
{
author: {
name: "-TheRightTree-",
id: "36rpckx9",
},
id: "ebdsce",
submission_flair: {
has: true,
text_color: "dark",
text: "Feedback",
background_color: "",
},
title: "Happy Fox! - I would've Never Thought I could ever Draw this a Few Months ago",
score: 1866,
vote: 0,
saved: false,
nsfw: false,
spoiler: false,
subreddit: {
name: "learnart",
id: "2s6fc",
},
created: 1576494428,
upvote_ratio: 0.99,
content: {
type: "image",
media: [{
url: "https://i.redd.it/mjqer2ts9z441.png",
height: 3840,
width: 3840,
}],
},
}
Now you can actually tell if the media is an image, a video, or an emebed media.
You can also do simple actions like upvoting and saving posts:
const { data, error } = corsica.post('un038h').upvote(1)
const { data, error } = corsica.post('un038h').save()
npm i corsica-reddit
Coming soon
Well, thank you for considering! I have 0 experience in open-source and managing packages, so any help will be appreciated!
FAQs
A simple Reddit API wrapper for JavaScript.
The npm package corsica-reddit receives a total of 1 weekly downloads. As such, corsica-reddit popularity was classified as not popular.
We found that corsica-reddit 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.