mirror of
https://github.com/ION606/learn.git
synced 2026-05-14 21:06:56 +00:00
initial commit
This commit is contained in:
@@ -0,0 +1,6 @@
|
||||
const app = require('express')();
|
||||
app.get('/', (req, res) => {
|
||||
res.json({ message: "UWU" })
|
||||
});
|
||||
const port = process.env.PORT || 3000;
|
||||
app.listen(port, () => console.log(`app listening on port ${port}`));
|
||||
Reference in New Issue
Block a user