UNPKG
zorba
Version:
latest (0.1.3)
0.1.3
0.1.2
0.1.1
0.1.0
ZORBA - Modern Query Processor
hybridum/zorba-node
zorba
/
example.js
9 lines
(8 loc)
•
204 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
var
zorba =
require
(
'./build/Release/zorba'
);
//var zorba = require('zorba');
try
{
var
r = zorba.
execute
(
"Hello from Zorba for Node"
);
console
.
log
(r); }
catch
(e) {
console
.
log
(
"error"
); }