Skip to content

sebastien/k7

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

== K7 - A standard library for V8
== Project description
-- Author: Sebastien Pierre <sebastien@type-z.org>
-- Date:   28-Sep-2008


[V8] is a fast JavaScript interpreter that can be easily embedded in C and C++
applications. The K7 projects aims at creating a high-quality standard library
for V8 by taking advantage of its embedding facilities.

The main goal of K7 is to offer an infrastructure that *makes it easy to write
extensions* to the V8 interpreter. A couple of open-source projects started with
the goal of creating a JavaScript server-side environment, but none of them is
easy to use, provide good documentation and guidelines so that newbies could
start writing extensions in minute.

One of the main goal of K7 is to enable people to write a module for their
preferred library without having to learn too much new information, and to be
guided in the process. As a result, K7 is designed on the following principles:

  - Macros to ease the pain: you can easily write extensions using a set of C
    macros that are rather straightforward to learn.

  - Module system: extensions are shipped as modules (or submodules) that fit
    into a predefined module tree, and can be loaded on demand (look at
    API.yaml) for more information.

  - Convention-based: to ensure that all the extensions fit nicely together, we
    provide a set of conventions based on the existing JavaScript library.

Additionally, there are a couple of principles that should be followed when writing
extensions:

  - Be simple: avoid writing complex extension modules with lots of functions
    and classes.  Provide binding to standard, well-known API (like POSIX). This
    allows to keep the extensions simple, make maintenance and usage easier.

  - Use JavaScript for objects: prefer writing pure-JavaScript modules that take
    advantage of extension modules rather than putting everything in the C++
    extension. For example, a module providing a 'File' object should be written
    in pure JavaScript, and take advantage of the 'posix' API for the actual
    I/O.

  - Limit dependencies: when you want to start writing an extension, pick a
    library that is designed in the UNIX philosophy, that does not have too many
    dependencies and do on thing well (like 'libcurl', for instance).

The K7 source code is separated in two main folders:

  - 'src' which contains the K7 main source code, which is basically the
    interpreter enhanced with a couple of simple primitives and the
    macros.

  - 'lib' which contains the JavaScript and extension modules source code, and
    which is laid out according to the modules hierarchy. For instance, the
    'system.posix' extension module will be located as
    'lib/system/posix/posix.cpp' file.

To get started, you'll need a POSIX environment with a compiler, and
'subversion' and 'scons' installed. Typing

>   make

Should be sufficient to create the 'k7' interpreter, compiled with extensions.
V8 will be downloaded automatically to your 'deps/v8' directory.

You have a couple of options that you can activate:

>   make compact    # Builds a compressed K7 executable
>   make DEBUG=1    # Enables debugging mode
>   make STATIC=1   # Embeds K7 modules within the executable
>   make LIBTASK=1  # Embeds libtask and provides a 'yield' feature
>   make LIBNODE=1  # Embeds libnode and provides a lot of async-network libraries

--
[V8]          V8 VM, <http://code.google.com/p/v8/> 

# EOF - vim: ts=2 sw=2 syn=kiwi et

About

A standard library for the V8 JavaScript interpreter

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published