New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@nickacide/redditjs

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@nickacide/redditjs

A JavaScript library for Reddit's API.

  • 0.0.1
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
1
decreased by-83.33%
Maintainers
1
Weekly downloads
 
Created
Source

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!

Keywords

FAQs

Package last updated on 25 May 2020

Did you know?

Socket

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
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc