summaryrefslogtreecommitdiff
path: root/content/post/2009-07-16-cpanhq-and-dependencies-graph.md
diff options
context:
space:
mode:
authorFranck Cuny <franckcuny@gmail.com>2016-07-02 20:06:31 -0700
committerFranck Cuny <franckcuny@gmail.com>2016-07-02 20:06:31 -0700
commit4b8e43f75b394a4e6169884fbfb4c606865c6a22 (patch)
tree48cae6b8e8f9b68cae29676d8a15cb3ddbfcccda /content/post/2009-07-16-cpanhq-and-dependencies-graph.md
parentStop using Jekyll. (diff)
downloadlumberjaph-4b8e43f75b394a4e6169884fbfb4c606865c6a22.tar.gz
Import migration from Jekyll to Hugo.
All the posts were converted, and the layout is created. This looks like it works just fine.
Diffstat (limited to 'content/post/2009-07-16-cpanhq-and-dependencies-graph.md')
-rw-r--r--content/post/2009-07-16-cpanhq-and-dependencies-graph.md17
1 files changed, 17 insertions, 0 deletions
diff --git a/content/post/2009-07-16-cpanhq-and-dependencies-graph.md b/content/post/2009-07-16-cpanhq-and-dependencies-graph.md
new file mode 100644
index 0000000..04d92cb
--- /dev/null
+++ b/content/post/2009-07-16-cpanhq-and-dependencies-graph.md
@@ -0,0 +1,17 @@
+---
+date: 2009-07-16T00:00:00Z
+summary: In which I graph dependencies for CPAN modules
+title: CPANHQ and dependencies graph
+---
+
+CPANHQ is a new project that "aims to be a community-driven, meta-data-enhanced alternative to such sites as [search.cpan.org](http://search.cpan.org) and [kobesearch.cpan.org](http://kobesearch.cpan.org/).
+
+I believe that a good vizualisation can help to have a better understanding of datas. One of the missing thing on the actual search.cpan.org is the lack of informations about a distribution's dependencies. So my first contribution to the CPANHQ project was to add such informations.
+
+<img src='/imgs/cpanhq-dep.webp' alt='cpanhq deps' align=left'>
+
+For each distributions, a graph is generated for the this distribution. For this, I use [Graph::Easy](http://search.cpan.org/perldoc?Graph::Easy) and data available from the CPANHQ database. I alsa include a simple list of the dependencies after the graph.
+
+Only the first level dependencies are displayed, as the distribution's metadata are analysed when the request is made. I could follow all the dependencies when the request is made, but for some distribution it could take a really long time, and it's not suitable for this kind of services.
+
+**edit**: you can find [CPANHQ on GitHub](http://github.com/bricas/cpanhq/tree/master).