diff --git a/index.js b/index.js new file mode 100644 index 0000000..6aaa3ec --- /dev/null +++ b/index.js @@ -0,0 +1,15 @@ +import express from 'express' + +const Server = express() + +Server.get('/', (req, res) => + res.status(200) + .json( + { + status: "OK!", + message: "The API is up and running! The current version is: 0.0.1" + } + ) +) + +Server.listen(12345, () => console.log("Server has started!")) \ No newline at end of file