community / cluster detection algorithm in networks - implemented in javascript?

cluster-analysis, graph, javascript, social-networking

Solution

There is a recent implementation of Louvain community detection in JavaScript, in a way it is easy to use it with D3.js:

- https://github.com/upphiminn/jLouvain

As a side note, as I was not aware of it, I wrote a greedy modularity maximization for my project TagOverflow (see also some description). It works good enough (see example below), but this `jLouvain` is both a better algorithm and with a better implementation.

Problem

I am looking for an implementation of a community detection algorithm in javascript. Louvain algorithm, or any other would do.

Original source