From fd189c8a73a6eaccba5b27b07e0de8de035ad9df Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Felix=20Geisend=C3=B6rfer?= Date: Tue, 13 Oct 2009 19:45:13 +0200 Subject: [PATCH] New section about contributing for the homepage --- doc/index.html | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/doc/index.html b/doc/index.html index d767e4d329..8bd237a542 100644 --- a/doc/index.html +++ b/doc/index.html @@ -22,6 +22,7 @@
  • Build
  • Demo
  • Community
  • +
  • Contribute
  • Benchmarks
  • Documentation
  • @@ -200,6 +201,28 @@ make install

    Projects/libraries which are using/for Node.js

    +

    Contribute

    +

    + Patches are always welcome. The process is simple: +

    + +
    +git clone git://github.com/ry/node.git
    +cd node
    +# edit/compile/test
    +git commit -m "Good description of what your patch does"
    +git format-patch HEAD^
    +
    + +

    + The best way for your patch to get noticed is to submit it to the + mailing list in form + of a gists or file attachement. +

    + +

    + Feature patches should usually be discussed before putting in the work. +

    Benchmarks