All Projects → Shauren → tc-client-launcher

Shauren / tc-client-launcher

Licence: MIT License
World of Warcraft client launcher with autologin feature for TrinityCore based servers

Programming Languages

typescript
32286 projects
C++
36643 projects - #6 most used programming language
HTML
75241 projects
CSS
56736 projects
python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to tc-client-launcher

Novuscore
A modern take on WoW emulation
Stars: ✭ 88 (+340%)
Mutual labels:  client, world-of-warcraft
Ionic3 Angular43 Httpclient
Example of Ionic 3 and the new Angular 4.3 HTTPClient
Stars: ✭ 20 (+0%)
Mutual labels:  client, angular4
WoWHead-PHP-Extractors
Compare your database with WoWHead and find missing data
Stars: ✭ 14 (-30%)
Mutual labels:  trinitycore, world-of-warcraft
Node Epicgames Client
Unofficial EpicGames Launcher in javascript.
Stars: ✭ 84 (+320%)
Mutual labels:  client, launcher
FusionCMS
A CMS for World of Warcraft private servers
Stars: ✭ 18 (-10%)
Mutual labels:  trinitycore, world-of-warcraft
why-I-hate-wow-private-servers
Reasons why most of WoW private servers sucks
Stars: ✭ 55 (+175%)
Mutual labels:  trinitycore, world-of-warcraft
lazap
Lazap, a cross-platform Games Client/Launcher - All your games at ONE library
Stars: ✭ 15 (-25%)
Mutual labels:  client, launcher
ngx-smart-loader
Smart loader handler to manage loaders everywhere in Angular apps.
Stars: ✭ 28 (+40%)
Mutual labels:  angular4
jdtls-launcher
The simplest way to install and launch JDTLS
Stars: ✭ 29 (+45%)
Mutual labels:  launcher
angular4-seed-starter
An angular4 starter with webpack2+aot+lazyload+hmr+scss(个人搭的angular4 starter,使用webpack2,包含aot、lazyload、scss、热替换功能等等)
Stars: ✭ 23 (+15%)
Mutual labels:  angular4
TrinityCore-Single
Custom TrinityCore server with NPCBots and my own patches singleplayer-oriented
Stars: ✭ 18 (-10%)
Mutual labels:  trinitycore
AsyncWebSocketClient
php异步websocket客户端
Stars: ✭ 35 (+75%)
Mutual labels:  client
nvimhost-scala
♦️ nvim host plugin provider and API client library in Scala
Stars: ✭ 19 (-5%)
Mutual labels:  client
BlizzCMS
BlizzCMS is an Open Source CMS for World of Warcraft emulators. Developed from Codeigniter 3, with a lot of love and effort. Not for profit.
Stars: ✭ 33 (+65%)
Mutual labels:  world-of-warcraft
FortniteLauncher
Fortnite Launcher which bypasses EAC that is designed to work on any update without breaking (kinda)!
Stars: ✭ 19 (-5%)
Mutual labels:  launcher
ionic-modal-custom-transitions
Add Custom Transitions to Ionic Modals.
Stars: ✭ 22 (+10%)
Mutual labels:  angular4
ngx-img
No description or website provided.
Stars: ✭ 25 (+25%)
Mutual labels:  angular4
mentos
Fresh Python Mesos Scheduler and Executor driver
Stars: ✭ 18 (-10%)
Mutual labels:  client
typeform-python-sdk
Typeform Python API client
Stars: ✭ 41 (+105%)
Mutual labels:  client
ofxgo
Golang library for querying and parsing OFX
Stars: ✭ 96 (+380%)
Mutual labels:  client

TcLauncher

Build

Run npm run build-all-dev to build the project. The build artifacts will be stored in the dist/ directory. Use the npm run build-package:{OS} for a production build (win or mac).

VSCode debug configurations

Debug Main Process - debugging code found in src/electron

Debug Renderer Process - debugging code from src/app. First, start the application with npm run electron then attach with this configuration

{
  "version": "0.2.0",
  "configurations": [
    {
      "name": "Debug Main Process",
      "type": "node",
      "request": "launch",
      "cwd": "${workspaceRoot}",
      "runtimeExecutable": "${workspaceRoot}/node_modules/.bin/electron",
      "windows": {
        "runtimeExecutable": "${workspaceRoot}/node_modules/.bin/electron.cmd"
      },
      "args": [
        "dist/"
      ]
    },
    {
      "name": "Debug Renderer Process",
      "type": "chrome",
      "request": "attach",
      "port": 9222,
      "webRoot": "${workspaceRoot}"
    }
  ]
}
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].