This tool is a mock of the in-game material trader UI. Development is still in the Alpha phase (not all features are finished). Feedback is welcome, new releases coming soon!
Since this app is still in development, you can try it out here: https://prototype.daev.co/edmts/
This app has been created using React.js. (And with an amazing slim start version, too!)
Run a local web server which will open the application in your default browser:
npm run dev
To debug the react.js code you can create a launch.json file in VS Code. When you hit F5, it should open the app in Chrome and breakpoints can be set in VS Code to debug it there.
Expand me to see launch.json snippet!
{
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "pwa-chrome",
"request": "launch",
"name": "Launch Chrome against localhost",
"url": "http://localhost:8080",
"webRoot": "${workspaceFolder}",
"sourceMapPathOverrides": {
"/build/*": "${workspaceRoot}/src/*"
}
}
]
}
Note: The app version needs to be updated manually in
snowpack.config.jsbefore building!
npx snowpack build
This will generate a ./build folder that contains the fully built website code. You may copy this folder and host it with apache as is.