mirror of
https://github.com/oven-sh/bun
synced 2026-02-09 18:38:55 +00:00
502 lines
21 KiB
Zig
502 lines
21 KiB
Zig
const std = @import("std");
|
|
const string = @import("./string_types.zig").string;
|
|
const PackageJSON = @import("./resolver/package_json.zig").PackageJSON;
|
|
const logger = @import("./logger.zig");
|
|
const Fs = @import("./fs.zig");
|
|
|
|
const _assert_code: string = @embedFile("./node-fallbacks/out/assert.js");
|
|
const _buffer_code: string = @embedFile("./node-fallbacks/out/buffer.js");
|
|
const _console_code: string = @embedFile("./node-fallbacks/out/console.js");
|
|
const _constants_code: string = @embedFile("./node-fallbacks/out/constants.js");
|
|
const _crypto_code: string = @embedFile("./node-fallbacks/out/crypto.js");
|
|
const _domain_code: string = @embedFile("./node-fallbacks/out/domain.js");
|
|
const _events_code: string = @embedFile("./node-fallbacks/out/events.js");
|
|
const _http_code: string = @embedFile("./node-fallbacks/out/http.js");
|
|
const _https_code: string = @embedFile("./node-fallbacks/out/https.js");
|
|
const _os_code: string = @embedFile("./node-fallbacks/out/os.js");
|
|
const _path_code: string = @embedFile("./node-fallbacks/out/path.js");
|
|
const _process_code: string = @embedFile("./node-fallbacks/out/process.js");
|
|
const _punycode_code: string = @embedFile("./node-fallbacks/out/punycode.js");
|
|
const _querystring_code: string = @embedFile("./node-fallbacks/out/querystring.js");
|
|
const _stream_code: string = @embedFile("./node-fallbacks/out/stream.js");
|
|
const _string_decoder_code: string = @embedFile("./node-fallbacks/out/string_decoder.js");
|
|
const _sys_code: string = @embedFile("./node-fallbacks/out/sys.js");
|
|
const _timers_code: string = @embedFile("./node-fallbacks/out/timers.js");
|
|
const _tty_code: string = @embedFile("./node-fallbacks/out/tty.js");
|
|
const _url_code: string = @embedFile("./node-fallbacks/out/url.js");
|
|
const _util_code: string = @embedFile("./node-fallbacks/out/util.js");
|
|
const _zlib_code: string = @embedFile("./node-fallbacks/out/zlib.js");
|
|
|
|
const _node_fetch_code: string = @embedFile("./node-fallbacks/out/node-fetch.js");
|
|
const _isomorphic_fetch_code: string = @embedFile("./node-fallbacks/out/isomorphic-fetch.js");
|
|
const _vercel_fetch_code: string = @embedFile("./node-fallbacks/out/@vercel_fetch.js");
|
|
const node_fetch_code: *const string = &_node_fetch_code;
|
|
const isomorphic_fetch_code: *const string = &_isomorphic_fetch_code;
|
|
const vercel_fetch_code: *const string = &_vercel_fetch_code;
|
|
|
|
const assert_code: *const string = &_assert_code;
|
|
const buffer_code: *const string = &_buffer_code;
|
|
const console_code: *const string = &_console_code;
|
|
const constants_code: *const string = &_constants_code;
|
|
const crypto_code: *const string = &_crypto_code;
|
|
const domain_code: *const string = &_domain_code;
|
|
const events_code: *const string = &_events_code;
|
|
const http_code: *const string = &_http_code;
|
|
const https_code: *const string = &_https_code;
|
|
const os_code: *const string = &_os_code;
|
|
const path_code: *const string = &_path_code;
|
|
const process_code: *const string = &_process_code;
|
|
const punycode_code: *const string = &_punycode_code;
|
|
const querystring_code: *const string = &_querystring_code;
|
|
const stream_code: *const string = &_stream_code;
|
|
const string_decoder_code: *const string = &_string_decoder_code;
|
|
const sys_code: *const string = &_sys_code;
|
|
const timers_code: *const string = &_timers_code;
|
|
const tty_code: *const string = &_tty_code;
|
|
const url_code: *const string = &_url_code;
|
|
const util_code: *const string = &_util_code;
|
|
const zlib_code: *const string = &_zlib_code;
|
|
|
|
const assert_import_path = "/bun-vfs/node_modules/assert/index.js";
|
|
const buffer_import_path = "/bun-vfs/node_modules/buffer/index.js";
|
|
const console_import_path = "/bun-vfs/node_modules/console/index.js";
|
|
const constants_import_path = "/bun-vfs/node_modules/constants/index.js";
|
|
const crypto_import_path = "/bun-vfs/node_modules/crypto/index.js";
|
|
const domain_import_path = "/bun-vfs/node_modules/domain/index.js";
|
|
const events_import_path = "/bun-vfs/node_modules/events/index.js";
|
|
const http_import_path = "/bun-vfs/node_modules/http/index.js";
|
|
const https_import_path = "/bun-vfs/node_modules/https/index.js";
|
|
const os_import_path = "/bun-vfs/node_modules/os/index.js";
|
|
const path_import_path = "/bun-vfs/node_modules/path/index.js";
|
|
const process_import_path = "/bun-vfs/node_modules/process/index.js";
|
|
const punycode_import_path = "/bun-vfs/node_modules/punycode/index.js";
|
|
const querystring_import_path = "/bun-vfs/node_modules/querystring/index.js";
|
|
const stream_import_path = "/bun-vfs/node_modules/stream/index.js";
|
|
const string_decoder_import_path = "/bun-vfs/node_modules/string_decoder/index.js";
|
|
const sys_import_path = "/bun-vfs/node_modules/sys/index.js";
|
|
const timers_import_path = "/bun-vfs/node_modules/timers/index.js";
|
|
const tty_import_path = "/bun-vfs/node_modules/tty/index.js";
|
|
const url_import_path = "/bun-vfs/node_modules/url/index.js";
|
|
const util_import_path = "/bun-vfs/node_modules/util/index.js";
|
|
const zlib_import_path = "/bun-vfs/node_modules/zlib/index.js";
|
|
|
|
const node_fetch_import_path = "/bun-vfs/node_modules/node-fetch/index.js";
|
|
const isomorphic_fetch_import_path = "/bun-vfs/node_modules/isomorphic-fetch/index.js";
|
|
const vercel_fetch_import_path = "/bun-vfs/node_modules/@vercel/fetch/index.js";
|
|
|
|
const assert_package_json = PackageJSON{
|
|
.name = "assert",
|
|
.version = "0.0.0-polyfill",
|
|
.module_type = .cjs,
|
|
.hash = @truncate(u32, std.hash.Wyhash.hash(0, "assert@0.0.0-polyfill")),
|
|
.main_fields = undefined,
|
|
.browser_map = undefined,
|
|
.source = logger.Source.initPathString("/bun-vfs/node_modules/assert/package.json", ""),
|
|
};
|
|
const buffer_package_json = PackageJSON{
|
|
.name = "buffer",
|
|
.version = "0.0.0-polyfill",
|
|
.module_type = .cjs,
|
|
.hash = @truncate(u32, std.hash.Wyhash.hash(0, "buffer@0.0.0-polyfill")),
|
|
.main_fields = undefined,
|
|
.browser_map = undefined,
|
|
.source = logger.Source.initPathString("/bun-vfs/node_modules/buffer/package.json", ""),
|
|
};
|
|
const console_package_json = PackageJSON{
|
|
.name = "console",
|
|
.version = "0.0.0-polyfill",
|
|
.module_type = .cjs,
|
|
.hash = @truncate(u32, std.hash.Wyhash.hash(0, "console@0.0.0-polyfill")),
|
|
.main_fields = undefined,
|
|
.browser_map = undefined,
|
|
.source = logger.Source.initPathString("/bun-vfs/node_modules/console/package.json", ""),
|
|
};
|
|
const constants_package_json = PackageJSON{
|
|
.name = "constants",
|
|
.version = "0.0.0-polyfill",
|
|
.module_type = .cjs,
|
|
.hash = @truncate(u32, std.hash.Wyhash.hash(0, "constants@0.0.0-polyfill")),
|
|
.main_fields = undefined,
|
|
.browser_map = undefined,
|
|
.source = logger.Source.initPathString("/bun-vfs/node_modules/constants/package.json", ""),
|
|
};
|
|
const crypto_package_json = PackageJSON{
|
|
.name = "crypto",
|
|
.version = "0.0.0-polyfill",
|
|
.module_type = .cjs,
|
|
.hash = @truncate(u32, std.hash.Wyhash.hash(0, "crypto@0.0.0-polyfill")),
|
|
.main_fields = undefined,
|
|
.browser_map = undefined,
|
|
.source = logger.Source.initPathString("/bun-vfs/node_modules/crypto/package.json", ""),
|
|
};
|
|
const domain_package_json = PackageJSON{
|
|
.name = "domain",
|
|
.version = "0.0.0-polyfill",
|
|
.module_type = .cjs,
|
|
.hash = @truncate(u32, std.hash.Wyhash.hash(0, "domain@0.0.0-polyfill")),
|
|
.main_fields = undefined,
|
|
.browser_map = undefined,
|
|
.source = logger.Source.initPathString("/bun-vfs/node_modules/domain/package.json", ""),
|
|
};
|
|
const events_package_json = PackageJSON{
|
|
.name = "events",
|
|
.version = "0.0.0-polyfill",
|
|
.module_type = .cjs,
|
|
.hash = @truncate(u32, std.hash.Wyhash.hash(0, "events@0.0.0-polyfill")),
|
|
.main_fields = undefined,
|
|
.browser_map = undefined,
|
|
.source = logger.Source.initPathString("/bun-vfs/node_modules/events/package.json", ""),
|
|
};
|
|
const http_package_json = PackageJSON{
|
|
.name = "http",
|
|
.version = "0.0.0-polyfill",
|
|
.module_type = .cjs,
|
|
.hash = @truncate(u32, std.hash.Wyhash.hash(0, "http@0.0.0-polyfill")),
|
|
.main_fields = undefined,
|
|
.browser_map = undefined,
|
|
.source = logger.Source.initPathString("/bun-vfs/node_modules/http/package.json", ""),
|
|
};
|
|
const https_package_json = PackageJSON{
|
|
.name = "https",
|
|
.version = "0.0.0-polyfill",
|
|
.module_type = .cjs,
|
|
.hash = @truncate(u32, std.hash.Wyhash.hash(0, "https@0.0.0-polyfill")),
|
|
.main_fields = undefined,
|
|
.browser_map = undefined,
|
|
.source = logger.Source.initPathString("/bun-vfs/node_modules/https/package.json", ""),
|
|
};
|
|
const os_package_json = PackageJSON{
|
|
.name = "os",
|
|
.version = "0.0.0-polyfill",
|
|
.module_type = .cjs,
|
|
.hash = @truncate(u32, std.hash.Wyhash.hash(0, "os@0.0.0-polyfill")),
|
|
.main_fields = undefined,
|
|
.browser_map = undefined,
|
|
.source = logger.Source.initPathString("/bun-vfs/node_modules/os/package.json", ""),
|
|
};
|
|
const path_package_json = PackageJSON{
|
|
.name = "path",
|
|
.version = "0.0.0-polyfill",
|
|
.module_type = .cjs,
|
|
.hash = @truncate(u32, std.hash.Wyhash.hash(0, "path@0.0.0-polyfill")),
|
|
.main_fields = undefined,
|
|
.browser_map = undefined,
|
|
.source = logger.Source.initPathString("/bun-vfs/node_modules/path/package.json", ""),
|
|
};
|
|
const process_package_json = PackageJSON{
|
|
.name = "process",
|
|
.version = "0.0.0-polyfill",
|
|
.module_type = .cjs,
|
|
.hash = @truncate(u32, std.hash.Wyhash.hash(0, "process@0.0.0-polyfill")),
|
|
.main_fields = undefined,
|
|
.browser_map = undefined,
|
|
.source = logger.Source.initPathString("/bun-vfs/node_modules/process/package.json", ""),
|
|
};
|
|
const punycode_package_json = PackageJSON{
|
|
.name = "punycode",
|
|
.version = "0.0.0-polyfill",
|
|
.module_type = .cjs,
|
|
.hash = @truncate(u32, std.hash.Wyhash.hash(0, "punycode@0.0.0-polyfill")),
|
|
.main_fields = undefined,
|
|
.browser_map = undefined,
|
|
.source = logger.Source.initPathString("/bun-vfs/node_modules/punycode/package.json", ""),
|
|
};
|
|
const querystring_package_json = PackageJSON{
|
|
.name = "querystring",
|
|
.version = "0.0.0-polyfill",
|
|
.module_type = .cjs,
|
|
.hash = @truncate(u32, std.hash.Wyhash.hash(0, "querystring@0.0.0-polyfill")),
|
|
.main_fields = undefined,
|
|
.browser_map = undefined,
|
|
.source = logger.Source.initPathString("/bun-vfs/node_modules/querystring/package.json", ""),
|
|
};
|
|
const stream_package_json = PackageJSON{
|
|
.name = "stream",
|
|
.version = "0.0.0-polyfill",
|
|
.module_type = .cjs,
|
|
.hash = @truncate(u32, std.hash.Wyhash.hash(0, "stream@0.0.0-polyfill")),
|
|
.main_fields = undefined,
|
|
.browser_map = undefined,
|
|
.source = logger.Source.initPathString("/bun-vfs/node_modules/stream/package.json", ""),
|
|
};
|
|
const string_decoder_package_json = PackageJSON{
|
|
.name = "string_decoder",
|
|
.version = "0.0.0-polyfill",
|
|
.module_type = .cjs,
|
|
.hash = brk: {
|
|
@setEvalBranchQuota(9999);
|
|
break :brk @truncate(u32, std.hash.Wyhash.hash(0, "string_decoder@0.0.0-polyfill"));
|
|
},
|
|
|
|
.main_fields = undefined,
|
|
.browser_map = undefined,
|
|
.source = logger.Source.initPathString("/bun-vfs/node_modules/string_decoder/package.json", ""),
|
|
};
|
|
|
|
const sys_package_json = PackageJSON{
|
|
.name = "sys",
|
|
.version = "0.0.0-polyfill",
|
|
.module_type = .cjs,
|
|
.hash = @truncate(u32, std.hash.Wyhash.hash(0, "sys@0.0.0-polyfill")),
|
|
.main_fields = undefined,
|
|
.browser_map = undefined,
|
|
.source = logger.Source.initPathString("/bun-vfs/node_modules/sys/package.json", ""),
|
|
};
|
|
const timers_package_json = PackageJSON{
|
|
.name = "timers",
|
|
.version = "0.0.0-polyfill",
|
|
.module_type = .cjs,
|
|
.hash = @truncate(u32, std.hash.Wyhash.hash(0, "timers@0.0.0-polyfill")),
|
|
.main_fields = undefined,
|
|
.browser_map = undefined,
|
|
.source = logger.Source.initPathString("/bun-vfs/node_modules/timers/package.json", ""),
|
|
};
|
|
const tty_package_json = PackageJSON{
|
|
.name = "tty",
|
|
.version = "0.0.0-polyfill",
|
|
.module_type = .cjs,
|
|
.hash = @truncate(u32, std.hash.Wyhash.hash(0, "tty@0.0.0-polyfill")),
|
|
.main_fields = undefined,
|
|
.browser_map = undefined,
|
|
.source = logger.Source.initPathString("/bun-vfs/node_modules/tty/package.json", ""),
|
|
};
|
|
const url_package_json = PackageJSON{
|
|
.name = "url",
|
|
.version = "0.0.0-polyfill",
|
|
.module_type = .cjs,
|
|
.hash = @truncate(u32, std.hash.Wyhash.hash(0, "url@0.0.0-polyfill")),
|
|
.main_fields = undefined,
|
|
.browser_map = undefined,
|
|
.source = logger.Source.initPathString("/bun-vfs/node_modules/url/package.json", ""),
|
|
};
|
|
const util_package_json = PackageJSON{
|
|
.name = "util",
|
|
.version = "0.0.0-polyfill",
|
|
.module_type = .cjs,
|
|
.hash = @truncate(u32, std.hash.Wyhash.hash(0, "util@0.0.0-polyfill")),
|
|
.main_fields = undefined,
|
|
.browser_map = undefined,
|
|
.source = logger.Source.initPathString("/bun-vfs/node_modules/util/package.json", ""),
|
|
};
|
|
const zlib_package_json = PackageJSON{
|
|
.name = "zlib",
|
|
.version = "0.0.0-polyfill",
|
|
.module_type = .cjs,
|
|
.hash = @truncate(u32, std.hash.Wyhash.hash(0, "zlib@0.0.0-polyfill")),
|
|
.main_fields = undefined,
|
|
.browser_map = undefined,
|
|
.source = logger.Source.initPathString("/bun-vfs/node_modules/zlib/package.json", ""),
|
|
};
|
|
|
|
const node_fetch_package_json = PackageJSON{
|
|
.name = "node-fetch",
|
|
.version = "0.0.0-polyfill",
|
|
.module_type = .cjs,
|
|
.hash = @truncate(u32, std.hash.Wyhash.hash(0, "node-fetch@0.0.0-polyfill")),
|
|
.main_fields = undefined,
|
|
.browser_map = undefined,
|
|
.source = logger.Source.initPathString("/bun-vfs/node_modules/node-fetch/package.json", ""),
|
|
};
|
|
const isomorphic_fetch_package_json = PackageJSON{
|
|
.name = "isomorphic-fetch",
|
|
.version = "0.0.0-polyfill",
|
|
.module_type = .cjs,
|
|
.hash = @truncate(u32, std.hash.Wyhash.hash(0, "isomorphic-fetch@0.0.0-polyfill")),
|
|
.main_fields = undefined,
|
|
.browser_map = undefined,
|
|
.source = logger.Source.initPathString("/bun-vfs/node_modules/isomorphic-fetch/package.json", ""),
|
|
};
|
|
const vercel_fetch_package_json = PackageJSON{
|
|
.name = "@vercel/fetch",
|
|
.version = "0.0.0-polyfill",
|
|
.module_type = .cjs,
|
|
.hash = @truncate(u32, std.hash.Wyhash.hash(0, "@vercel/fetch@0.0.0-polyfill")),
|
|
.main_fields = undefined,
|
|
.browser_map = undefined,
|
|
.source = logger.Source.initPathString("/bun-vfs/node_modules/@vercel/fetch/package.json", ""),
|
|
};
|
|
|
|
pub const FallbackModule = struct {
|
|
path: Fs.Path,
|
|
code: *const string,
|
|
package_json: *const PackageJSON,
|
|
|
|
pub const @"assert" = FallbackModule{
|
|
.path = Fs.Path.initWithNamespaceVirtual(assert_import_path, "node", "assert"),
|
|
.code = assert_code,
|
|
.package_json = &assert_package_json,
|
|
};
|
|
pub const @"buffer" = FallbackModule{
|
|
.path = Fs.Path.initWithNamespaceVirtual(buffer_import_path, "node", "buffer"),
|
|
.code = buffer_code,
|
|
.package_json = &buffer_package_json,
|
|
};
|
|
pub const @"console" = FallbackModule{
|
|
.path = Fs.Path.initWithNamespaceVirtual(console_import_path, "node", "console"),
|
|
.code = console_code,
|
|
.package_json = &console_package_json,
|
|
};
|
|
pub const @"constants" = FallbackModule{
|
|
.path = Fs.Path.initWithNamespaceVirtual(constants_import_path, "node", "constants"),
|
|
.code = constants_code,
|
|
.package_json = &constants_package_json,
|
|
};
|
|
pub const @"crypto" = FallbackModule{
|
|
.path = Fs.Path.initWithNamespaceVirtual(crypto_import_path, "node", "crypto"),
|
|
.code = crypto_code,
|
|
.package_json = &crypto_package_json,
|
|
};
|
|
pub const @"domain" = FallbackModule{
|
|
.path = Fs.Path.initWithNamespaceVirtual(domain_import_path, "node", "domain"),
|
|
.code = domain_code,
|
|
.package_json = &domain_package_json,
|
|
};
|
|
pub const @"events" = FallbackModule{
|
|
.path = Fs.Path.initWithNamespaceVirtual(events_import_path, "node", "events"),
|
|
.code = events_code,
|
|
.package_json = &events_package_json,
|
|
};
|
|
pub const @"http" = FallbackModule{
|
|
.path = Fs.Path.initWithNamespaceVirtual(http_import_path, "node", "http"),
|
|
.code = http_code,
|
|
.package_json = &http_package_json,
|
|
};
|
|
pub const @"https" = FallbackModule{
|
|
.path = Fs.Path.initWithNamespaceVirtual(https_import_path, "node", "https"),
|
|
.code = https_code,
|
|
.package_json = &https_package_json,
|
|
};
|
|
pub const @"os" = FallbackModule{
|
|
.path = Fs.Path.initWithNamespaceVirtual(os_import_path, "node", "os"),
|
|
.code = os_code,
|
|
.package_json = &os_package_json,
|
|
};
|
|
pub const @"path" = FallbackModule{
|
|
.path = Fs.Path.initWithNamespaceVirtual(path_import_path, "node", "path"),
|
|
.code = path_code,
|
|
.package_json = &path_package_json,
|
|
};
|
|
pub const @"process" = FallbackModule{
|
|
.path = Fs.Path.initWithNamespaceVirtual(process_import_path, "node", "process"),
|
|
.code = process_code,
|
|
.package_json = &process_package_json,
|
|
};
|
|
pub const @"punycode" = FallbackModule{
|
|
.path = Fs.Path.initWithNamespaceVirtual(punycode_import_path, "node", "punycode"),
|
|
.code = punycode_code,
|
|
.package_json = &punycode_package_json,
|
|
};
|
|
pub const @"querystring" = FallbackModule{
|
|
.path = Fs.Path.initWithNamespaceVirtual(querystring_import_path, "node", "querystring"),
|
|
.code = querystring_code,
|
|
.package_json = &querystring_package_json,
|
|
};
|
|
pub const @"stream" = FallbackModule{
|
|
.path = Fs.Path.initWithNamespaceVirtual(stream_import_path, "node", "stream"),
|
|
.code = stream_code,
|
|
.package_json = &stream_package_json,
|
|
};
|
|
pub const @"string_decoder" = FallbackModule{
|
|
.path = Fs.Path.initWithNamespaceVirtual(string_decoder_import_path, "node", "string_decoder"),
|
|
.code = string_decoder_code,
|
|
.package_json = &string_decoder_package_json,
|
|
};
|
|
pub const @"sys" = FallbackModule{
|
|
.path = Fs.Path.initWithNamespaceVirtual(sys_import_path, "node", "sys"),
|
|
.code = sys_code,
|
|
.package_json = &sys_package_json,
|
|
};
|
|
pub const @"timers" = FallbackModule{
|
|
.path = Fs.Path.initWithNamespaceVirtual(timers_import_path, "node", "timers"),
|
|
.code = timers_code,
|
|
.package_json = &timers_package_json,
|
|
};
|
|
pub const @"tty" = FallbackModule{
|
|
.path = Fs.Path.initWithNamespaceVirtual(tty_import_path, "node", "tty"),
|
|
.code = tty_code,
|
|
.package_json = &tty_package_json,
|
|
};
|
|
pub const @"url" = FallbackModule{
|
|
.path = Fs.Path.initWithNamespaceVirtual(url_import_path, "node", "url"),
|
|
.code = url_code,
|
|
.package_json = &url_package_json,
|
|
};
|
|
pub const @"util" = FallbackModule{
|
|
.path = Fs.Path.initWithNamespaceVirtual(util_import_path, "node", "util"),
|
|
.code = util_code,
|
|
.package_json = &util_package_json,
|
|
};
|
|
pub const @"zlib" = FallbackModule{
|
|
.path = Fs.Path.initWithNamespaceVirtual(zlib_import_path, "node", "zlib"),
|
|
.code = zlib_code,
|
|
.package_json = &zlib_package_json,
|
|
};
|
|
|
|
pub const @"node-fetch" = FallbackModule{
|
|
.path = Fs.Path.initWithNamespaceVirtual(node_fetch_import_path, "node", "node-fetch"),
|
|
.code = node_fetch_code,
|
|
.package_json = &node_fetch_package_json,
|
|
};
|
|
|
|
pub const @"isomorphic-fetch" = FallbackModule{
|
|
.path = Fs.Path.initWithNamespaceVirtual(isomorphic_fetch_import_path, "node", "isomorphic-fetch"),
|
|
.code = isomorphic_fetch_code,
|
|
.package_json = &isomorphic_fetch_package_json,
|
|
};
|
|
|
|
pub const @"@vercel/fetch" = FallbackModule{
|
|
.path = Fs.Path.initWithNamespaceVirtual(vercel_fetch_import_path, "node", "@vercel/fetch"),
|
|
.code = vercel_fetch_code,
|
|
.package_json = &vercel_fetch_package_json,
|
|
};
|
|
};
|
|
|
|
pub const Map = std.ComptimeStringMap(FallbackModule, .{
|
|
&.{ "assert", FallbackModule.assert },
|
|
&.{ "buffer", FallbackModule.buffer },
|
|
&.{ "console", FallbackModule.console },
|
|
&.{ "constants", FallbackModule.constants },
|
|
&.{ "crypto", FallbackModule.crypto },
|
|
&.{ "domain", FallbackModule.domain },
|
|
&.{ "events", FallbackModule.events },
|
|
&.{ "http", FallbackModule.http },
|
|
&.{ "https", FallbackModule.https },
|
|
&.{ "os", FallbackModule.os },
|
|
&.{ "path", FallbackModule.path },
|
|
&.{ "process", FallbackModule.process },
|
|
&.{ "punycode", FallbackModule.punycode },
|
|
&.{ "querystring", FallbackModule.querystring },
|
|
&.{ "stream", FallbackModule.stream },
|
|
&.{ "string_decoder", FallbackModule.string_decoder },
|
|
&.{ "sys", FallbackModule.sys },
|
|
&.{ "timers", FallbackModule.timers },
|
|
&.{ "tty", FallbackModule.tty },
|
|
&.{ "url", FallbackModule.url },
|
|
&.{ "util", FallbackModule.util },
|
|
&.{ "zlib", FallbackModule.zlib },
|
|
|
|
&.{ "node-fetch", FallbackModule.@"node-fetch" },
|
|
&.{ "isomorphic-fetch", FallbackModule.@"isomorphic-fetch" },
|
|
&.{ "@vercel/fetch", FallbackModule.@"@vercel/fetch" },
|
|
});
|
|
|
|
pub fn contentsFromPath(path: string) ?string {
|
|
var module_name = path["/bun-vfs/node_modules/".len..];
|
|
|
|
if (module_name[0] == '@') {
|
|
var end = std.mem.indexOfScalar(u8, module_name, '/').? + 1;
|
|
end += std.mem.indexOfScalar(u8, module_name[end..], '/').?;
|
|
|
|
module_name = module_name[0..end];
|
|
} else {
|
|
module_name = module_name[0..std.mem.indexOfScalar(u8, module_name, '/').?];
|
|
}
|
|
|
|
if (Map.get(module_name)) |mod| {
|
|
return mod.code.*;
|
|
}
|
|
return null;
|
|
}
|
|
|
|
pub const buffer_fallback_import_name: string = "node:buffer";
|