llv8call 0.01 released
llv8call is an library for call OS from v8.
http://code.google.com/p/llv8call/
You can easy to inject a lot of classes by follow code:
v8::HandleScope handle_scope;
v8::Handle global = v8::ObjectTemplate::New();
v8::Handle context = v8::Context::New(NULL, global);
v8::Context::Scope context_scope(context);
LLV8::Init(argc, argv, context->Global());
currently, llv8call supports follow things. This is based on
NSPR(NetScape Portable Runtime).
* File()
* Dir()
* System vars
* STDIN/STDOUT/STDERR
* Process Management
* Load Dynamic Library
* require()
* TCPSocket
regards.
Comments