summaryrefslogtreecommitdiff
path: root/std/node/process.ts
blob: 35de23b8802f2f8cfe1c08e5233e6fb3ec4e015f (plain)
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
import { notImplemented } from "./_utils.ts";

const version = `v${Deno.version.deno}`;

const versions = {
  node: Deno.version.deno,
  ...Deno.version
};

const osToPlatform = (os: Deno.OperatingSystem): string =>
  os === "win" ? "win32" : os === "mac" ? "darwin" : os;

const platform = osToPlatform(Deno.build.os);

const { arch } = Deno.build;

const { pid, cwd, chdir, exit } = Deno;

function on(_event: string, _callback: Function): void {
  // TODO(rsp): to be implemented
  notImplemented();
}

export const process = {
  version,
  versions,
  platform,
  arch,
  pid,
  cwd,
  chdir,
  exit,
  on,
  get env(): { [index: string]: string } {
    // using getter to avoid --allow-env unless it's used
    return Deno.env();
  },
  get argv(): string[] {
    // Deno.execPath() also requires --allow-env
    return [Deno.execPath(), ...Deno.args];
  }
};