Another JavaScript B+ tree implementation.
npm install bplustree
var BPlusTree = require('bplustree');
npm run buildbuilds the projectnpm run testruns most testsnpm run test-fullruns all testsnpm run coveragegenerates most coveragenpm run coverage-fullgenerates full coveragenpm run docgenerates the jsdoc documentation
None
MIT
- This implementation is based on @darius' work: bplustree.py
- @tehgeekmeister's notes on B+ Trees were also very helpful
- The
_genGetKeyFnfunction is courtesy of @martinmaillard