@nickacide/redditjs

0.0.1 • Public • Published

RedditJS

npm downloads coverage-image Discord

RedditJS is a JavaScript library for interacting with Reddit's official API. Not only is it lightweight, it's also easy to use.

Install

Install via npm:

npm install --save js-reddit

RedditJS requires events and request-promise as dependencies.

Features

  • 100% Promise-based
  • Full coverage of Reddit's API
  • Extremely lightweight
  • Feels intuitive to use

Setup

To get started, you need to create an app. To understand how Reddit apps work, I suggest reading about it here.

Instructions:

  1. Create your app on Reddit (Either Web App or Script).
  2. Follow the next steps here.
  3. Acquire your refresh token, client id and client secret.

Usage

Now that you have everything you need, you can start writing some code. Here is an example for posting a link on Reddit.

const Reddit = require('js-reddit');
const client = new Reddit.Client({
	refresh_token: "refresh token",
	secret: "client secret",
	id: "client id"
});

client.on('authorized', () => {
	console.log(`Logged in! My token is ${client.token}`)
})

client.authenticate();

client.post('/api/submit', {
	sr: 'memes',
	resubmit: true,
	kind: 'link',
	title: 'Title for my Link',
	url: 'https://www.example.com'
}).then(results => {
	console.log(results)
});

Expected Output

{
  json: {
    errors: [],
    data: {
      url: 'link to message on reddit',
      drafts_count: 0,
      id: 'unique-ID',
      name: 't3_unique-ID'
    }
  }
}

Documentation

At the time of this writing, no Documentation exists yet, as this package lacks features. For now, the functionality of this package will be shown here. *Code is case-sensitive.

Client extends EventEmitter

Properties

  • Client.id The id of the app you created
  • Client.secret The secret of your app
  • Client.refresh_token The token used to generate access tokens
  • Client.token The access token (Regenerated every 3950 seconds)
  • Client.user_agent (Optional) Your User Agent. Always try provide one.

Methods

  • Client.authenticate() Authorize your app and generate an access token
  • Client.get(path, options) where path: The api path you want to invoke, options: The options required for the request
  • Client.put(path, options) where path: The api path you want to invoke, options: The options required for the request
  • Client.post(path, options) where path: The api path you want to invoke, options: The options required for the request
  • Client.patch(path, options) where path: The api path you want to invoke, options: The options required for the request
  • Client.delete(path, options) where path: The api path you want to invoke, options: The options required for the request

Events

  • authorized Emitted when the Client successfully authenticated.

FAQ

Questions can be asked by creating an Issue or asking in my Discord server. If you have a suggestion, please tell me! I am not online everyday, so do not expect the fastest responses. If you would like to become a contributor for this repository or a mod in my Discord server, simply ask!

Package Sidebar

Install

npm i @nickacide/redditjs

Weekly Downloads

0

Version

0.0.1

License

MIT

Unpacked Size

9.8 kB

Total Files

4

Last publish

Collaborators

  • nickacide