hi all
I've start new project named llv8call.
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<v8::ObjectTemplate> global = v8::ObjectTemplate::New();
    v8::Handle<v8::Context> 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.

--~--~---------~--~----~------------~-------~--~----~
v8-users mailing list
v8-users@googlegroups.com
http://groups.google.com/group/v8-users
-~----------~----~----~----~------~----~------~--~---

Reply via email to