mirror of
https://github.com/FranP-code/open-react-blog-api.git
synced 2025-10-12 23:52:57 +00:00
Initial commit
This commit is contained in:
11
src/index.js
Normal file
11
src/index.js
Normal file
@@ -0,0 +1,11 @@
|
||||
const Express = require("express")
|
||||
const server = Express()
|
||||
|
||||
const port = 3000
|
||||
|
||||
server.get("/", (req, res) => {
|
||||
res.send("TEST")
|
||||
})
|
||||
|
||||
server.listen(port)
|
||||
console.log("Listening in the port ", port)
|
||||
Reference in New Issue
Block a user