0.1.2 • Published 11 years ago
lucene-parser v0.1.2
Lucene-parser
A minimal node module providing utility methods to parse an fetextquery to lucene syntax.
Installation
npm install lucene-parser --saveUsage
var lucene_parser = require('lucene-parser')
lucene_parser.setSearchTerm("hello:there i am a-test-string that.should.become lucne_friendly");
console.log(lucene_parser.getOriginalSearchTerm());
// hello:there i am a-test-string that.should.become lucne_friendly
console.log(lucene_parser.getFormattedSearchTerm());
// hello:"there" i* am* "a-test-string" "that.should.become" "lucne_friendly"Tests
npm testContributing
In lieu of a formal styleguide, take care to maintain the existing coding style. Add unit tests for any new or changed functionality. Lint and test your code.
Feedback
Feel free to drop me a line or a shoutout on Twitter, it would be cool to know if you find it useful and use it in any of your projects. And feel free to write me an issues if there is some functionality you miss.
Release History
- 0.1.0 Initial release