forked from pieroproietti/penguins-eggs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patheggs
executable file
·104 lines (104 loc) · 9.59 KB
/
eggs
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
./bin/dev $1 $2 $3 $4 $5 $6 $7 $8
#
# - script read from stdin (default if no file name is provided, interactive mode if a tty)
# -- indicate the end of node options
# --abort-on-uncaught-exception aborting instead of exiting causes a core file to be generated for analysis
# -c, --check syntax check script without executing
# --completion-bash print source-able bash completion script
# --cpu-prof Start the V8 CPU profiler on start up, and write the CPU profile to disk before exit. If
# --cpu-prof-dir is not specified, write the profile to the current working directory.
# --cpu-prof-dir=... Directory where the V8 profiles generated by --cpu-prof will be placed. Does not affect
# --prof.
# --cpu-prof-interval=... specified sampling interval in microseconds for the V8 CPU profile generated with
# --cpu-prof. (default: 1000)
# --cpu-prof-name=... specified file name of the V8 CPU profile generated with --cpu-prof
# --disable-proto=... disable Object.prototype.__proto__
# --disallow-code-generation-from-strings disallow eval and friends
# --enable-source-maps experimental Source Map V3 support
# -e, --eval=... evaluate script
# --experimental-import-meta-resolve experimental ES Module import.meta.resolve() support
# --experimental-json-modules experimental JSON interop support for the ES Module loader
# --loader, --experimental-loader=... use the specified module as a custom loader
# --experimental-policy=... use the specified file as a security policy
# --experimental-repl-await experimental await keyword support in REPL
# --experimental-specifier-resolution=... Select extension resolution algorithm for es modules; either 'explicit' (default) or
# 'node'
# --experimental-vm-modules experimental ES Module support in vm module
# --experimental-wasi-unstable-preview1 experimental WASI support
# --experimental-wasm-modules experimental ES Module support for webassembly modules
# --force-context-aware disable loading non-context-aware addons
# --frozen-intrinsics experimental frozen intrinsics support
# --heap-prof Start the V8 heap profiler on start up, and write the heap profile to disk before exit. If
# --heap-prof-dir is not specified, write the profile to the current working directory.
# --heap-prof-dir=... Directory where the V8 heap profiles generated by --heap-prof will be placed.
# --heap-prof-interval=... specified sampling interval in bytes for the V8 heap profile generated with --heap-prof.
# (default: 512 * 1024)
# --heap-prof-name=... specified file name of the V8 heap profile generated with --heap-prof
# --heapsnapshot-signal=... Generate heap snapshot on specified signal
# -h, --help print node command line options (currently set)
# --huge-max-old-generation-size increase default maximum heap size on machines with 16GB memory or more
# --icu-data-dir=... set ICU data load path to dir (overrides NODE_ICU_DATA) (note: linked-in ICU data is
# present)
#
# --input-type=... set module type for string input
# --insecure-http-parser use an insecure HTTP parser that accepts invalid HTTP headers
# --inspect[=[host:]port] activate inspector on host:port (default: 127.0.0.1:9229)
# --inspect-brk[=[host:]port] activate inspector on host:port and break at start of user script
# --debug-port, --inspect-port=[host:]port set host:port for inspector
# --inspect-publish-uid=... comma separated list of destinations for inspector uid(default: stderr,http)
# -i, --interactive always enter the REPL even if stdin does not appear to be a terminal
# --interpreted-frames-native-stack help system profilers to translate JavaScript interpreted frames
# --jitless disable runtime allocation of executable memory
# --max-http-header-size=... set the maximum size of HTTP headers (default: 16384 (16KB))
# --no-deprecation silence deprecation warnings
# --no-force-async-hooks-checks disable checks for async_hooks
# --no-warnings silence all process warnings
# --openssl-config=... load OpenSSL configuration from the specified file (overrides OPENSSL_CONF)
# --pending-deprecation emit pending deprecation warnings
# --policy-integrity=... ensure the security policy contents match the specified integrity
# --preserve-symlinks preserve symbolic links when resolving
# --preserve-symlinks-main preserve symbolic links when resolving the main module
# -p, --print [...] evaluate script and print result
# --prof-process process V8 profiler output generated using --prof
# --redirect-warnings=... write warnings to file instead of stderr
# --report-compact output compact single-line JSON
# --report-directory=... define custom report pathname. (default: current working directory of Node.js process)
# --report-filename=... define custom report file name. (default: YYYYMMDD.HHMMSS.PID.SEQUENCE#.txt)
# --report-on-fatalerror generate diagnostic report on fatal (internal) errors
# --report-on-signal generate diagnostic report upon receiving signals
# --report-signal=... causes diagnostic report to be produced on provided signal, unsupported in Windows.
# (default: SIGUSR2)
# --report-uncaught-exception generate diagnostic report on uncaught exceptions
# -r, --require=... module to preload (option can be repeated)
# --throw-deprecation throw an exception on deprecations
# --title=... the process title to use on startup
# --tls-cipher-list=... use an alternative default TLS cipher list
# --tls-keylog=... log TLS decryption keys to named file for traffic analysis
# --tls-max-v1.2 set default TLS maximum to TLSv1.2 (default: TLSv1.3)
# --tls-max-v1.3 set default TLS maximum to TLSv1.3 (default: TLSv1.3)
# --tls-min-v1.0 set default TLS minimum to TLSv1.0 (default: TLSv1.2)
# --tls-min-v1.1 set default TLS minimum to TLSv1.1 (default: TLSv1.2)
# --tls-min-v1.2 set default TLS minimum to TLSv1.2 (default: TLSv1.2)
# --tls-min-v1.3 set default TLS minimum to TLSv1.3 (default: TLSv1.2)
# --trace-deprecation show stack traces on deprecations
# --trace-event-categories=... comma separated list of trace event categories to record
# --trace-event-file-pattern=... Template string specifying the filepath for the trace-events data, it supports ${rotation}
# and ${pid}.
# --trace-exit show stack trace when an environment exits
# --trace-sigint enable printing JavaScript stacktrace on SIGINT
# --trace-sync-io show stack trace when use of sync IO is detected after the first tick
# --trace-tls prints TLS packet trace information to stderr
# --trace-uncaught show stack traces for the `throw` behind uncaught exceptions
# --trace-warnings show stack traces on process warnings
# --track-heap-objects track heap object allocations for heap snapshots
# --unhandled-rejections=... define unhandled rejections behavior. Options are 'strict' (raise an error), 'warn'
# (enforce warnings) or 'none' (silence warnings)
# --use-bundled-ca use bundled CA store (default)
# --use-largepages=... Map the Node.js static code to large pages. Options are 'off' (the default value, meaning
# do not map), 'on' (map and ignore failure, reporting it to stderr), or 'silent' (map and
# silently ignore failure)
# --use-openssl-ca use OpenSSL's default CA store
# --v8-options print V8 command line options
# --v8-pool-size=... set V8's thread pool size
# -v, --version print Node.js version
# --zero-fill-buffers automatically zero-fill all newly allocated Buffer and SlowBuffer instances