Getting started
List of platforms tested to run teajs is located here.
Stable version installation instructions
mkdir teajs_things
cd teajs_things
wget "https://teajs.org/downloads/teajs-1.02.tgz"
gzip -dc teajs-1.02.tgz | tar x
cd teajs
./build-v8.sh
./build-teajs.py build
./test.sh
./build-teajs.py install
Github installation instructions
mkdir teajs_things
cd teajs_things
git clone https://github.com/pronetcom/teajs.git
cd teajs
./build-v8.sh
./build-teajs.py build
./test.sh
./build-teajs.py install
Longer description
./build-v8.sh will download v8 source and dependencies in ../v8_things folder and compile it (takes several hours).
./build-teajs.py is a wrapper around Makefile, searching and setting environment variables. Valid commands are "build", "clean", "install" and "remoteinstall".
./test.sh runs several unit tests using teajs and shared libraries located in current folder (some of which are meant to fail and in that case mentioned explicitly).