0.2.2 • Published 5 years ago

@randomlyfish/reddit-api v0.2.2

Weekly downloads
1
License
MIT
Repository
github
Last release
5 years ago

reddit-api

reddit-api is a small node library that makes it easy to use the reddit api in both the server and client.

Making requests

reddit-api exports both "redditClientApi" and "redditServerApi", one usable in client side code and the other usable in server side code. Both are used in the same way so the following examples aplies to both.

Checking if a subreddit exists:

const subreddit = "webdev";
redditClientApi.checkIfSubredditExists(subreddit).then(response => {
  console.log(response.data); // Logs out a boolean, in this case it will be true
});

Requesting posts:

const options = {};
redditClientApi.getPosts(options).then(response => {
  console.log(response.data); // Logs out an array of objects for each post
});

This information is also available through jsdoc.

Getting comments:

const postId = ""; // The id for a post can be found in the response when requesting posts
redditClientApi.getCommentsForPost(postId).then(response => {
  console.log(response.data); // Logs out an array of objects with details about each comments and replies to them
  // In this case it won't work as the id is empty
});

Prerequsites

This library uses express to enable comunication between the client and the server, so some knowledege on express is recommended.

In order to use the client api class it also needs to be bundled, for that I would recommend webpack.

Getting started

First install reddit-api by running the following in the terminal:

npm install @randomlyfish/reddit-api

Then install webpack as a development dependency:

npm install webpack --save-dev

Create the following directory and file structure:

client
    index.html
    index.js
server
    app.js
webpack.config.js

const options = {limit: 5}; redditClientApi.getPosts(options).then(response => { console.log(response.data); // Logs out an array of objects with all the posts });

	
</details>

<details>
<summary>app.js</summary>
	
``` javascript
// Code for setting up express
const path = require("path");
const express = require("express");

const app = express();

const localPort = 3000;
const port = process.env.PORT || localPort;
const root = process.cwd();

app.listen(port);
app.use("/dist", express.static("dist"));

app.get("/", (req, res) => {
	res.sendFile(path.join(root + "/client/index.html"));
});

if (port === localPort) {
	// In the terminal, you can hold control and click on the link to open it in the browser
	console.log("http://127.0.0.1:" + port + "/");
}

// Code for setting up reddit-api
const {redditServerApi} = require("@randomlyfish/reddit-api");

// Enables the use of the client api which is used in index.js
redditServerApi.addRoutes(app);

module.exports = { // This defines where webpack will start gathering dependencies, // it's usually your main client script file, or html file entry: "./client/index.js", // This defines where the bundled code will end up in your project directory // It's set up to be added into dist/bundle.js output: { path: path.resolve(__dirname), filename: "bundle.js", publicPath: "/dist" }, // This allows you to view your client scripts in the browser as if they were not bundled // While it's not required, it's highly recommended as it makes it much easier to debug your code during development devtool: "source-map" }

	
</details>

<br>

### Running

Run the following in terminal to bundle your code:

webpack --entry ./client/index.js --output-filename ./dist/bundle.js --mode=development

<br>

And this to start the server:

node server/app

0.2.2

5 years ago

0.2.1

5 years ago

0.2.0

5 years ago

0.1.2

5 years ago

0.1.1

5 years ago

0.1.0

5 years ago