README.org
A Nodejs org mode parser module
Usage example:
1: var orgParser=require('org-mode-parser'); 2: orgParser.makelist("README.org", function (nodelist){ 3: // Here nodelist is a list of Orgnode objects 4: console.dir(nodelist); 5: });
In the line 3 you are free to process the nodes in order.