mirror of
https://github.com/sp-tarkov/server.git
synced 2025-02-13 09:10:43 -05:00
This is a big one. 🔥
**Changes:**
- Targets next major release (v4.0.0)
- Switch runtimes from NodeJS to BunJS (bun.sh)
- Typescript library support moved to `ESNext`
- Typescript compile option `verbatimModuleSyntax` enabled
- Updated all interfaces to be imported explicitly as types
- Strict mode enabled
- Reduces the number of tsconfig files
- Pins all dep packages to specific patch versions
- Includes Bun lock file in repo (doesn't cause issues like the
package-lock did)
- Replaces Gulp with a new Typescript based build system
- Adds `core-js` as a workaround for Bun not playing nice with
`reflect-metadata`
- Removes `pkg` and `swc` (Yay Bun!)
- Updated package scripts and entry point system to be more intuitive
- Updated VSCode workspace configurations
- Updated `.gitignore` to align with updated project structure
- Updated Biome configuration to align with updated project structure
- `Program.ts` - Removes call to set encoding on the process
- `global.d.ts` - Added underscores to build globals to match other
global names
- `JsonUtil.ts` - Replaced old `fixJson` package with newer `jsonrepair`
package
- `HashUtil.ts` - Replaced old `buffer-crc32` package with built-in
`node:zlib` package
- `DatabaseImporter.ts` - Updates database validation object to be flat,
where the keys are the relative path to the file
- `BunTimer.ts` - Adds an easy to use timer class that's compatible with
nanoseconds.
**TODO:**
- Look into mod loading. I think we use a TS transpiler for mods and I
believe that can be removed now.
- Bun includes a number of APIs that can be used in place of Node's
packages (built-in or otherwise); HTTP server, WebSocket server, File
IO, Hashing, File Globing, Testing... Each of these should be utilized
where ever possible.
- Update in-repo documentation to reference BunJS instead of NodeJS.
51 lines
1.7 KiB
TypeScript
51 lines
1.7 KiB
TypeScript
import "reflect-metadata";
|
|
|
|
import path from "node:path";
|
|
import { Container } from "@spt/di/Container";
|
|
import type { IDatabaseTables } from "@spt/models/spt/server/IDatabaseTables";
|
|
import { DatabaseServer } from "@spt/servers/DatabaseServer";
|
|
import type { ImporterUtil } from "@spt/utils/ImporterUtil";
|
|
import { DependencyContainer, Lifecycle, container } from "tsyringe";
|
|
import type { Environment } from "vitest";
|
|
|
|
// Manually mock the logger.
|
|
import { WinstonLogger } from "@tests/__mocks__/WinstonLogger.mock";
|
|
|
|
export default (<Environment>{
|
|
name: "spt-server",
|
|
transformMode: "ssr",
|
|
async setup() {
|
|
// Register all of the dependencies in the container.
|
|
Container.registerTypes(container);
|
|
Container.registerListTypes(container);
|
|
|
|
// Override registration to the container.
|
|
container.register<WinstonLogger>("WinstonLogger", WinstonLogger, { lifecycle: Lifecycle.Singleton });
|
|
|
|
// Import the database.
|
|
await importDatabase(container);
|
|
|
|
return {
|
|
async teardown() {},
|
|
};
|
|
},
|
|
});
|
|
|
|
/**
|
|
* Reads the database JSON files and imports them into memory.
|
|
*
|
|
* @param container The dependency container.
|
|
* @returns A void promise.
|
|
*/
|
|
async function importDatabase(container: DependencyContainer): Promise<void> {
|
|
const importerUtil = container.resolve<ImporterUtil>("ImporterUtil");
|
|
const databaseServer = container.resolve<DatabaseServer>("DatabaseServer");
|
|
|
|
// Read the data from the JSON files.
|
|
const databaseDir = path.resolve("./assets/database");
|
|
const dataToImport = await importerUtil.loadAsync<IDatabaseTables>(`${databaseDir}/`);
|
|
|
|
// Save the data to memory.
|
|
databaseServer.setTables(dataToImport);
|
|
}
|