forked from yujiabe/SEE
-
Notifications
You must be signed in to change notification settings - Fork 0
/
README
35 lines (25 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
Welcome to SEE (Simple ECMAScript Engine).
SEE is a library that provides an ECMAScript (JavaScript) run-time
environment.
Running configure and compiling in the normal way should provide
the library 'libsee.a' and a test application, 'see-shell'. I
strongly recommend that you have Boehm-gc installed (it's a garbage
collector library) otherwise see-shell just uses the non-free'ing
malloc(). Run configure with the '--help' argument to see switches
on how to configure it for boehm-gc.
Documentation for development using the SEE library can be found in
doc/USAGE.html. The 'see-shell' program doubles as an example and
demonstration of how the library is intended to be used.
I hope you find this library useful. Please send bug reports back to me
via <[email protected]>. New releases of SEE will be announced
at <http://freshmeat.net/projects/see/> and made available at
<http://www.adaptive-enterprises.com.au/~d/software/see/>.
The subversion repository for SEE is available at
svn://svn.adaptive-enterprises.com.au/repos/see/
David Leonard, 2004.
Directory organisation:
doc/ - Documentation
libsee/ - Library source
include/see - Public header files
shell/ - Demo/test program 'see-shell'
ssp/ - Demo HTTP server that runs server-side Javascript