• Stars
    star
    906
  • Rank 50,411 (Top 1.0 %)
  • Language
    TypeScript
  • License
    GNU General Publi...
  • Created about 8 years ago
  • Updated 26 days ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Vortex Development

Vortex

Last Commit Build Release Pre-release Contributors Forks Stars Watchers License GPL-3.0

Nexus Mods Discord

Windows Electron.js NodeJS React Redux SASS Webpack Yarn JavaScript TypeScript

Building from source code

To build from source you have two choices.

1) Automatic (mostly):

  • Start a powershell
  • Run Invoke-WebRequest "https://raw.githubusercontent.com/Nexus-Mods/Vortex/master/bootstrap.ps1" -OutFile bootstrap.ps1 to fetch the bootstrap script
  • By default this script will build Vortex in "c:\build\vortex", if you want it somewhere else, edit the script to change the build directory before running it!
  • You will more than likely need to allow scripts to be run. This can be set using Set-ExecutionPolicy Unrestricted but a powershell with admin access is required.
  • Run the script (.\bootstrap.ps1)
    • This script will try to download and install all dependencies, then check out and build vortex
    • Most dependencies are installed using scoop (https://scoop.sh)

2) Manual:

  • Before you can build vortex you need to download and install a couple of dependencies. If any of the download links is no longer valid, try google or a search engine of your choice.
Node.js
  • Download installer from nodejs.org and run the installer
  • Version should not matter, the latest LTS version should be fine
  • Verify that Node has installed successfully by running node --version in your cmd or terminal
Yarn
  • Run npm install --global yarn
  • Verify that Yarn has installed successfully by running yarn --version in your cmd or terminal
Git
  • Download installer (64-bit) from git-scm.com and run installer
  • Verify that Git has installed successfully byb running git --version in your cmd or terminal
Python 3.10
  • Required for one of the build tools (node-gyp).
  • At the time of writing versions 3.7-3.10 are known to work, 3.11 is known to not work as it has a breaking change that breaks node-gyp as of 9.3.1
  • Download installer (64-bit) from python.org and run installer
  • Make sure to have it added to PATH, otherwise defaults are fine.
CMake
  • Required for some of the native builds, All versions that are even remotely recent should work
  • Download installer (x64) from cmake.org and run installer
  • Enable the option to add to PATH (for the current user or all users)
Visual c++ build tools 2022 or Visual Studio 2022 (Community Edition)
  • Download installer from visualstudio.microsoft.com
    • You may have to google around for this as Microsoft tends to change their sitemap all the bloody time
  • Under "Workloads", enable "Desktop Development with C++"
  • Under "Individual Components", enable ".NET 6.0 Runtime (LTS)", ".NET SDK", "C++ ATL for latest vXYZ build tools" and "Windows 1x SDK" (any version should be fine)
Set up yarn to use C++ build tools
  • Run yarn config set msvs_version 2022 --global
    • This sets up yarn to use the c++ build tools we just installed, you probably only need to do this if you've also installed other versions of Visual Studio. Can't hurt though

Cloning and building the Vortex source code

  • Start a new command line prompt at this point to ensure you're using the updated PATH environment.
  • Create and cd to an appropriate directory (i.e. c:\projects)
  • git clone https://github.com/Nexus-Mods/Vortex.git from the created directory
    • this should create a new directory vortex in the current working directory (i.e. c:\projects\vortex)
  • cd into the vortex directory cd vortex
  • Switch to an appropriate branch, if necessary
    • git checkout some_branch
  • For development
    • yarn install to install dependencies
    • yarn build to build
    • yarn start to run
  • For production
    • The scripts (electron-builder-oneclick.json and electron-builder-advanced.json) are set up to require code signing with a certificate you don't have so change that
    • yarn dist to build (this will take a while)
    • Find the installer and an already unpacked version in dist

If something goes wrong

There are two phases to the process, installing dependencies and building. However, dependent modules may also be compiled during the install phase, this is particularly true for native modules (modules written in C++ for example rather than javascript) if no pre-build binaries are available online. Thus you might get compilation errors during the "yarn install" step.

If the install step fails with an error mentioning c++ or node-gyp or cmake, this will usually mean that one of the tools (python, cmake, visual studio build tools) were not installed (correctly) or can't be found, please repeat the corresponding step above and double check you followed the instructions. Then repeat the "yarn install" step. Unfortunately, with these tools being installed system-wide, it's also possible that your existing installs of other versions of these tools (visual studio build tools in particular) may interfere. We can only really promise this build works on a clean windows.

There is one component, fomod-installer, written in c# and at the time of writing its build will randomly fail for no reason. In this case you don't have to do anything special, just repeat the install step.

If the error message shows an error from webpack or a javascript error, this may mean that some package was updated and broke compatibility. It may also mean typescript is outdated. Another possible error may be that your yarn cache is invalid such that even if you reinstall a package you still get a broken variant. The yarn cache is at %LOCALAPPDATA%\Yarn\Cache\v6 and it's safe to delete it, that will only cause some additional internet traffic.

The automatic variant will skip dependency download and install if the download was installed previously. If a dependency install failed for some reason or you cancelled it, you will have to manually install that package (see the downloads directory).

Running the dev build

After building a dev build you can run it using yarn start

You can repeat the steps to install dependencies (yarn install) and the full build (yarn build) as necessary.

To save yourself time, you can rebuild just the bundled extensions (yarn run subprojects). If you're making changes to the core application you can run build in watch mode (yarn run buildwatch) which will be the same as yarn build but then will continue to watch for changes (only on the core application, not extensions!) and rebuild on demand.

Development decisions

The following section aims to clarify and explain a few development decisions.

development vs release builds

The toolchain for development builds and release builds is quite different.

In dev builds the typescript compiler (tsc) is used directly to transliterate each ts file to js individually, electron runs those files directly, dependencies are loaded from node_modules.

In release builds we use webpack and ts-loader to bake all ts files and dependencies into two javascript files (one for the main/browser process, one for the renderer). electron-builder is used to bundle code&assets, generate an nsis installer, build it into (two variants) of exe installers and sign them (and all the executables and dlls we ship). There are mulitple electron-builder configuration files for multiple variants, only "oneclick" and "advanced" are used for release builds, the others may be in different states of disrepair (though ci should work as well)

As a result, dev builds are easier to work with and building is much quicker but runtime is substantially.

Further, we use a two-package structure, meaning the /package.json file is used for all development and the build environment for releases (e.g. this file always controls the electron version being used/bundled) whereas /app/package.json decides settings (name, version, dependencies) for the release builds only. We use a custom script (checkPackages.js) to ensure that the dependencies for release are a subset of the build env dependencies and that they use the same version to avoid problems that didn't occur during testing because of differing dependencies.

Bundled extensions on the other hand are built the same between dev and release: they are always built with webpack and each have their own build setup - with the exception of simple game extensions which are already single js files, those simply get copied over.

yarn 1 vs yarn 3 vs npm vs pnpm

This codebase still use yarn 1 (classic). Any attempt to use yarn 2 or 3 ended up with nonsensical errors (missing dependencies that are clearly listed, successive installs leading to missing packages) with no reasonable way to investigate why. npm and pnpm are quite slow in comparison. We don't really use any yarn-specific features (workspaces?) so switching shouldn't be too difficult but for now yarn "classic" works.

esm vs commonjs

At the time of writing, electron doesn't support ES modules so everything is transpiled to commonjs. This has the consequence that some updated libraries supporting only esm can't be used (e.g. new versions of d3). It also means that asynchronous imports (const foo = await import('bar')) are actually synchronous at runtime. Doesn't really matter though since everything is baked into a single file on release builds anyway and code splitting isn't really needed.


Further Information

Reporting bugs

Please report issues to the issue tracker on github. Please always include at the very least the following information:

  • The exact version of Vortex you're using
  • Your operating system
  • What you were doing when the bug happened
  • What exactly the bug is (crash? error messages? unexpected behaviour?)
  • If you get any error message, include the full and exact error message. Do not paraphrase, do not leave out information that looks cryptic or unimportant to you
  • The log file (see below)
  • Ideally also the application state (see below)

All data the client generates (including settings and logs) are stored at

C:\Users\<username>\AppData\Roaming\Vortex (releases)

or

C:\Users\<username>\AppData\Roaming\vortex_devel (development build)

If you need to report a bug, the following files inside that directory may be useful in addition to the error message displayed on screen:

  • vortex.log (logs are rotated at a certain size, this is the latest one)
  • state\* except global_account (that one contains keys and passwords so sensitive information)
  • <game>\state* (if the bug pertains to a specific game)

More Repositories

1

Nexus-Mod-Manager

C#
964
star
2

NexusMods.App

Home of the development of the Nexus Mods App
C#
815
star
3

vortex-games

Collection of extensions that add support for various games to vortex
TypeScript
38
star
4

web-issues

Issue Tracking for the Nexus Mods Website
HTML
36
star
5

discord-bot

Nexus Mods Discord Bot
TypeScript
18
star
6

fomod-installer

Library for processing fomod mod packages (xml and C# based).
C#
12
star
7

vortex-api

Extension API for vortex
JavaScript
11
star
8

node-nexus-api

Node.js client for the nexusmods.com API
TypeScript
10
star
9

sso-integration-demo

A simple page to demonstrate the SSO integration using simple JS for a website.
HTML
8
star
10

NexusMods.Archives.Nx

NexusMods' High Performance Archive Format
C#
8
star
11

game-starfield

Vortex Extension for Starfield
TypeScript
7
star
12

modmeta-db

Combined client library and sample server for providing meta information for mods.
TypeScript
7
star
13

extension-plugin-management

Extension implementing plugin management for Fallout 3, Fallout NV, Fallout 4 and Oblivion, Skyrim and SkyrimSE
TypeScript
5
star
14

node-loot

node.js bindings for LOOT (load order optimization tool)
C++
5
star
15

NexusMods.Paths

Custom path library used by NexusMods.App.
C#
5
star
16

NMM-Test-Builds

NMM Test builds for bug reporting
4
star
17

node-winapi-bindings

Assorted winapi functions exported to node.
C++
4
star
18

extension-quickbms-support

TypeScript
4
star
19

game-valheim

A Vortex extension adding game support for Valheim
TypeScript
4
star
20

node-gamebryo-savegames

Savegame parser for Fallout 3, Fallout NV, Fallout 4, Oblivion, Skyrim and Skyrim Special Edition
C++
4
star
21

game-palworld

TypeScript
4
star
22

NexusMods.MnemonicDB

A simple, fast, and type-safe in-process temporal database for .NET applications.
C#
4
star
23

StarfieldSaveTool

A tool to decompress and convert Starfield save games to JSON format
C#
3
star
24

harmony-patcher

C#
3
star
25

Nexus-Mod-Manager-Legacy

Nexus Mod Manager Legacy Version
C#
2
star
26

node-wholocks

List processes that lock a file
JavaScript
2
star
27

extension-open-directory

Vortex extension adding "open in file manager" button in various places
TypeScript
2
star
28

bunny_events

A simple wrapper gem to aid with producing events to a message queue in a standardized and uniform way across multiple micro-services.
Ruby
2
star
29

NexusMods.MkDocsMaterial.Themes.Next

A theme for MkDocs Material that resembles the look of NexusMods' Next Website.
CSS
2
star
30

NexusMods.App.Template

Template repository for NexusMods.App.* repositories.
C#
2
star
31

extension-collections

TypeScript
2
star
32

node-vortexmt

Library with multithreaded functions designed for Vortex.
C++
2
star
33

extension-mod-dependencies

Vortex Extension implementing management of mod dependencies.
TypeScript
1
star
34

extension-common-interpreters

Interpreters for common executable file types.
TypeScript
1
star
35

game-masseffectlegendaryedition

TypeScript
1
star
36

extension-binding-fix

Extension that tries to fix binding between mods and archives.
TypeScript
1
star
37

extension-translate

Extension helping in translating vortex to different languages.
TypeScript
1
star
38

7z-bin

7zip binaries
JavaScript
1
star
39

extension-theme-switcher

Vortex extension adding theme settings.
TypeScript
1
star
40

extension-modtype-enb

Vortex extension adding support for enb mods
TypeScript
1
star
41

node-turbowalk

Faster directory iteration
JavaScript
1
star
42

extension-gamebryo-savegames

Extension implementing savegame management for several gamebryo-based games
TypeScript
1
star
43

extension-gamebryo-testsettings

Extension implementing sanity check for settings of various gamebryo games
TypeScript
1
star
44

ba2tk

C++
1
star
45

sample-extension

JavaScript
1
star
46

amqphelper

Go
1
star
47

extension-modtype-bepinex

TypeScript
1
star
48

kcd-documentation

Warhorse's official Kingdom Come Deliverance Documentation
HTML
1
star
49

extension-titlebar-launcher

Adds buttons to the main window toolbar to start tools
TypeScript
1
star
50

Vortex-Staging

Nothing to see here
1
star
51

NexusMods.App.Telemetry

C#
1
star
52

extension-arc-support

Vortex extension adding support for arc (e.g. Dragons Dogma) archives.
TypeScript
1
star
53

node-exe-version

Retrieve version number from executables
JavaScript
1
star