comparison nodejs/INSTALL.txt @ 812:7a312cd3e26f

Rename nodejs/README.svg to nodejs/INSTALL.txt
author Thinker K.F. Li <thinker@codemud.net>
date Fri, 03 Sep 2010 11:53:32 +0800
parents nodejs/README.svg@752263ca0ed2
children a74b4d986a91
comparison
equal deleted inserted replaced
811:5aca6024b147 812:7a312cd3e26f
1 svg.js:
2 ===============
3
4 The sample code to load an SVG file. It requires the libxmljs, which is
5 available at http://github.com/polotek/libxmljs/tree/refactor. Please
6 copy the libxmljs.node to the objs/default if you want to test the
7 libxmljs+mbfly without installing them into the system. The path can be
8 defined by the NODE_PATH environment variable.
9
10 (1) Compile MadButterfly with nodejs support
11 ~user/MadButterfly$ ./configure --enable-nodejs; make
12
13 (2) Compile libxmljs
14 ~user/MadButterfly/nodejs$ git clone http://github.com/polotek/libxmljs.git
15 ~user/MadButterfly/nodejs$ cd libxmljs; make; cd ..
16
17 (3) Copy the libxmljs.node to the nodejs build directory
18 ~user/MadButterfly/nodejs$ cp libxmljs/libjsxml.node objs/default
19 (4) Set the path
20 ~user/MadButterfly/nodejs$ export NODE_PATH=objs/default
21
22 (5) Execute testsvg.js
23 ~user/MadButterfly/nodejs$ node testsvg.js
24