npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

reddit

v1.2.1

Published

Simple Reddit API client

Downloads

1,241

Readme

reddit travis npm downloads

Simple Reddit API client

Install

npm install reddit

This package is used by BitMidi to post MIDI files to the /r/BitMidi subreddit.

Features

  • Lightweight – no unecessary dependencies, easy-to-audit source code
  • Modern API – uses async/await and promises
  • Powered by the official Reddit API

Usage

First, create a Reddit App.

  • Click "Create app"
  • For simple scripts, you can select a type of "script".
  • You can enter anything in the "about URL" and "redirect URL" fields.
  • Note your app ID (appears below the app name) and your app secret.

Now, let's take an action on Reddit:

const Reddit = require('reddit')

const reddit = new Reddit({
  username: 'TODO',
  password: 'TODO',
  appId: 'TODO',
  appSecret: 'TODO',
  userAgent: 'MyApp/1.0.0 (http://example.com)'
})

// Submit a link to the /r/BitMidi subreddit
const res = await reddit.post('/api/submit', {
  sr: 'WeAreTheMusicMakers',
  kind: 'link',
  resubmit: true,
  title: 'BitMidi – 100K+ Free MIDI files',
  url: 'https://bitmidi.com'
})

console.log(res)
// Prints:
// {
//   json: {
//     errors: [],
//     data: {
//       url: 'https://www.reddit.com/r/WeAreTheMusicMakers/comments/96ak55/',
//       drafts_count: 0,
//       id: '96ak55',
//       name: 't3_96ak55'
//     }
//   }
// }

API

reddit = new Reddit(opts)

Create a new Reddit API client.

You must provide opts, an object with the following required properties:

  • username - Username of the reddit user
  • password - Password of the reddit user
  • appId - Reddit App ID
  • appSecret - Reddit App Secret

The following opts properties are optional:

  • opts.userAgent - String to use as the User-Agent header in http requests

reddit.get(url, [data])

Invoke the Reddit API using the GET HTTP method.

The url parameter is used to specify which API to invoke. For example, /api/submit or /api/vote. A complete listing of possible APIs is available in the Reddit API documentation.

The optional data parameter is used to specify relevant data for the selected API. The necessary data varies depending on which API is being used. Again, see the Reddit API documentation.

reddit.post(url, [data])

Invoke the Reddit API using the POST HTTP method.

reddit.patch(url, [data])

Invoke the Reddit API using the PATCH HTTP method.

reddit.put(url, [data])

Invoke the Reddit API using the PUT HTTP method.

reddit.delete(url, [data])

Invoke the Reddit API using the DELETE HTTP method.

License

The Prosperity Public License. Copyright (c) Feross Aboukhadijeh.

To obtain a commercial license, visit feross.org/commercial.