Last active
January 27, 2021 15:29
-
-
Save MichaelBelousov/d8a37658d25f6f019fa386bed619b84b to your computer and use it in GitHub Desktop.
even more hooks - create server script
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
const app = require("express")(); | |
app.use(require('cors')()); | |
app.get("/tank-params", (req, res) => { | |
res.json({ | |
level: Math.random(), | |
pressure: Math.random(), | |
}); | |
}); | |
app.listen(3001, () => console.log("listening on localhost")); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment