Security News
Weekly Downloads Now Available in npm Package Search Results
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
A minimal wrapper for the reddit API. It manages the session tokens, rate limiting and JSON parsing, otherwise it just passes on the raw response from reddit.
npm install redditor
It supports both doing anonymouse and authorized requests.
var reddit = require('redditor');
reddit.get('/r/funny.json', function(err, response) {
if(err) throw err;
console.log(response); // response is a Javascript object
});
Login using username and password.
reddit({
username: 'test_username',
password: 'test_password'
}, function(err, authorized) {
// Note that the returned object and the main reddit instance are not the same
if(err) throw err;
authorized.get('/api/me.json', function(err, response) {
// ...
});
});
Or using cookie
and modhash
directly.
var authorized = reddit({
cookie: 'test_cookie',
modhash: 'test_modhash'
});
If needed the data can also be streamed using the returned instance.
reddit.post('/api/new_captcha').pipe(fs.createWriteStream('captcha.png'));
FAQs
Minimal reddit API wrapper
The npm package redditor receives a total of 4 weekly downloads. As such, redditor popularity was classified as not popular.
We found that redditor 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
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
Security News
A Stanford study reveals 9.5% of engineers contribute almost nothing, costing tech $90B annually, with remote work fueling the rise of "ghost engineers."
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.