File: control

package info (click to toggle)
node-contextify 0.1.6-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 168 kB
  • ctags: 127
  • sloc: cpp: 258; makefile: 33
file content (35 lines) | stat: -rw-r--r-- 1,178 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
Source: node-contextify
Section: devel
Priority: extra
Maintainer: Debian Javascript Maintainers <pkg-javascript-devel@lists.alioth.debian.org>
Uploaders: Laszlo Boszormenyi (GCS) <gcs@debian.org>,
 David Paleino <dapal@debian.org>
Build-Depends:
 debhelper (>= 9)
 , nodejs-dev
 , node-gyp
 , npm
 , dh-buildinfo
Standards-Version: 3.9.4
Homepage: https://github.com/brianmcd/contextify
Vcs-Git: git://git.debian.org/collab-maint/node-contextify.git
Vcs-Browser: http://git.debian.org/?p=collab-maint/node-contextify.git;a=summary

Package: node-contextify
Architecture: any
Depends:
 ${shlibs:Depends}
 , ${misc:Depends}
 , nodejs
Description: 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.