This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
---- Minecraft Crash Report ---- | |
WARNING: coremods are present: | |
AdvancedRocketryPlugin (AdvancedRocketry-1.12.2-1.7.0-232-universal.jar) | |
IELoadingPlugin (ImmersiveEngineering-core-0.12-98.jar) | |
AstralCore (astralsorcery-1.12.2-1.10.27.jar) | |
Inventory Tweaks Coremod (InventoryTweaks-1.63.jar) | |
EnderCorePlugin (EnderCore-1.12.2-0.5.76-core.jar) | |
MekanismCoremod (Mekanism-1.12.2-9.8.3.390.jar) | |
OpenModsCorePlugin (OpenModsLib-1.12.2-0.12.2.jar) |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var express = require('express'); | |
var chalk = require('chalk'); | |
var app = express(); | |
var router = express.Router(); | |
var port = process.env.PORT || 8080; | |
router.get('/test', function(req, res) { | |
res.status(200).send('Hello world'); | |
}); | |
app.use('/api', router); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var express = require('express'); | |
var chalk = require('chalk'); | |
var app = express(); | |
var router = express.Router(); | |
var port = process.env.PORT || 8080; | |
router.get('/test', function(req, res) { | |
res.status(200).send('Hello world'); | |
}); | |
app.use('/api', router); |