chad3814 / node-hashtable

Native hashtable interface for when V8 objects can't take the heat
MIT License
106 stars 41 forks source link

updated index.js to request native.node line 1 #41

Closed rddill-IBM closed 6 years ago

rddill-IBM commented 7 years ago

Current implementation fails on node V6 LTS if line 1 is:

var HashTable = require('./build/Release/native').HashTable;

however it works if line 1 is:

var HashTable = require('./build/Release/native.node').HashTable;