-
Notifications
You must be signed in to change notification settings - Fork 46
/
README
63 lines (40 loc) · 1.27 KB
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
hx-node provides haxe type signatures to Node.js 0.6x.
The base Node API is in js/Node.hx.
There are no abstractions or wrappers just the raw api, this allows you to
implement wrappers on top to your own taste. For example, I've wrapped basic
functionality with futures and map strings events to enums here
https://github.com/cloudshift/Sys.
Also find on haxelib as "nodejs".
Compiling with haxe
-------------------
For example, file Ex1.hx
import js.Node;
class Ex1 {
public static function main() {
trace(Node.process.memoryUsage());
trace(Node.process.memoryUsage().heapTotal);
Node.dns.resolve("cloudshift.cl","A",function(err,ips:Array<Dynamic>) {
trace(ips);
});
}
}
Compile with
haxe -D nodejs -cp . -js ex1.js -main Ex1
where -cp . adds the current directory to the classpath which should include the provided js
directory. You must add -D nodejs to the compile line.
and then to execute
node ex1.js
Ex1.hx:6: {
rss : 10039296,
vsize : 638578688,
heapTotal : 5005376,
heapUsed : 2497376
}
Ex1.hx:7: 5029952
Ex1.hx:11: [204.232.203.106]
To compile with haxelib
haxe -lib nodejs .... etc
Other sources of info
---------------------
haxenode.org describes using these wrappers
haxe-node.js google group to leave a message