node-contextify 0.1.2-2 source package in Ubuntu

Changelog

node-contextify (0.1.2-2) unstable; urgency=low


  * Fixed reference to local compiled version of the module
    (Closes: #670312)

 -- David Paleino <email address hidden>  Tue, 24 Apr 2012 22:00:23 +0200

Upload details

Uploaded by:
Debian Javascript Maintainers
Uploaded to:
Sid
Original maintainer:
Debian Javascript Maintainers
Architectures:
any
Section:
devel
Urgency:
Low Urgency

See full publishing history Publishing

Series Pocket Published Component Section

Downloads

File Size SHA-256 Checksum
node-contextify_0.1.2-2.dsc 1.3 KiB 2e450cf2e701f9bcfa3b551af0914fb7d89eb6c8f1338f1d63d42901384c2b40
node-contextify_0.1.2.orig.tar.gz 8.7 KiB 4f77b0cd256d820d63b5d74edb71e6abf43083c4cd823a1fdcf46be5c46ab3ec
node-contextify_0.1.2-2.debian.tar.gz 2.6 KiB c66ce3da26d11802e9ced8e34cddc8f8ebca02c8301b994a4795a3962f15658f

No changes file available.

Binary packages built by this source

node-contextify: turn an object into a persistent execution context

 Contextify is a NodeJS module that lets you to turn an object into a
 persistent V8 execution context.
 .
 A contextified object acts as the global 'this' when executing scripts
 in its context. Contextify adds 3 methods to the contextified object:
  - run(code, filename);
  - getGlobal();
  - dispose().
 The main difference between Contextify and Node's vm methods is that
 Contextify allows asynchronous functions to continue executing in the
 Contextified object's context.