12 lines
344 B
JavaScript
12 lines
344 B
JavaScript
|
/**
|
||
|
* eventstore-node A port of EventStore .Net ClientAPI to Node.js
|
||
|
* see README.md for more details
|
||
|
* see LICENSE for license info
|
||
|
*/
|
||
|
/**
|
||
|
* TODO:
|
||
|
* library is heavy on number of files so it could have negative impact on load time
|
||
|
* we need a compiled (single file) version of the library
|
||
|
*/
|
||
|
module.exports = require('./src/main.js');
|