1
0 Comments

Tutorial: Sorting ~1761 subreddits to see which subreddits are popular

Hi, I am researching of subreddits to make my next product. I want to get an overview of how I sort subreddits.

This will use vanilla JS.

1. grab the subreddits data from here https://pastebin.com/XVBDM4jn (copy the raw paste data)

Copy the json data to your html code like this (and don't forget to parse it)

<script>
let json_subreddits = JSON.parse(`//the copy pasted json data`)
</script>

2. We need to sort the subreddits from most popular to least popular. We need to use sort() function.

But the problem is our data is an object, and not an array.
To convert it, we need to iterate the object

let json_subreddits = JSON.parse(`the copy pasted json data`);

let sortable = [];
for (let subreddits in json_subreddits) {
sortable.push([subreddits, json[subreddits]]);
}

now we have an array

3. Use sort function

let json_subreddits = JSON.parse(`the copy pasted json data`);

let sortable = [];
for (let subreddits in json_subreddits) {
sortable.push([subreddits, json[subreddits]]);
}

sortable.sort(function(a, b) {
    return b[1] - a[1];
// this will return from big to small. to inverse it, just switch the a and b
// return a[1] - b[1];
});

4. Console.log(sortable) to see the result

And you can view subreddits in your console. Enough to give you which subreddits are popular and which are least popular.

If you like this, you can follow my journey live on Twitter https://twitter.com/RicardoSawir
or follow me on IndieHacker here.

posted to Icon for group Developers
Developers
on January 14, 2021
Trending on Indie Hackers
I've been reading 50 indie builder posts a day for the past month. Here's the pattern nobody talks about. User Avatar 163 comments I shipped 3 features this weekend based entirely on community feedback. Here's what I built and why. User Avatar 134 comments Finally reached 100 users in just 12 days 🚀 User Avatar 119 comments I'm a lawyer who launched an AI contract tool on Product Hunt today — here's what building it as a non-technical founder actually felt like User Avatar 100 comments I realized showing problems isn’t enough — so I built this User Avatar 32 comments Maintaining open-source projects that millions use User Avatar 27 comments