Socket
Socket
Sign inDemoInstall

corsica-reddit

Package Overview
Dependencies
0
Maintainers
1
Versions
16
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    corsica-reddit

A simple Reddit API wrapper for JavaScript.


Version published
Weekly downloads
0
decreased by-100%
Maintainers
1
Install size
88.7 kB
Created
Weekly downloads
 

Readme

Source

Corsica

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).

How is it different from other wrappers?

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()

Installation

npm i corsica-reddit

Documentation

Coming soon

Contributing

Well, thank you for considering! I have 0 experience in open-source and managing packages, so any help will be appreciated!

FAQs

Last updated on 15 May 2022

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc