File: control

package info (click to toggle)
node-v8-compile-cache 2.4.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 276 kB
  • sloc: javascript: 888; sh: 21; makefile: 2
file content (36 lines) | stat: -rw-r--r-- 1,353 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
36
Source: node-v8-compile-cache
Section: javascript
Priority: optional
Maintainer: Debian Javascript Maintainers <pkg-javascript-devel@lists.alioth.debian.org>
Uploaders: Paolo Greppi <paolo.greppi@libpf.com>, Jérémy Lal <kapouer@melix.org>
Testsuite: autopkgtest-pkg-nodejs
Build-Depends:
 debhelper-compat (= 13)
 , dh-sequence-nodejs
 , node-semver <!nocheck>
 , node-tap <!nocheck>
 , node-temp <!nocheck>
 , node-rimraf <!nocheck>
Standards-Version: 4.6.2
Homepage: https://github.com/zertosh/v8-compile-cache
Vcs-Git: https://salsa.debian.org/js-team/node-v8-compile-cache.git
Vcs-Browser: https://salsa.debian.org/js-team/node-v8-compile-cache
Rules-Requires-Root: no

Package: node-v8-compile-cache
Architecture: all
Depends:
 ${misc:Depends}
 , nodejs:any(>= 14)
Provides: ${nodejs:Provides}
Multi-Arch: foreign
Description: Leverage v8 compile cache to speedup loading of Node.js modules
 V8 is the JavaScript Engine used by Node.js and Chromium; it uses just-in-time
 compilation (JIT) to execute Javascript code, and code caching to lessen the
 overhead to initially parse and compile a script.
 .
 The ability to tap into V8 to produce/consume this cache was introduced in
 Node v5.7.0. This module attaches a require hook to use V8's code cache to
 speed up instantiation time.
 .
 Node.js is an event-based server-side JavaScript engine.