baloo

Node bindings for Baloo


Keywords
baloo, kde
License
LGPL-2.0
Install
npm install baloo@0.0.2

Documentation

Node-Baloo

Node-Baloo provides node.js bindings for Baloo.

var Baloo = require('baloo');

var query = new Baloo.Query('keyword');
query.exec(function(results) {
    results.forEach(function(filePath) {
        console.log(filePath);
    });
});