Skip to content

Instantly share code, notes, and snippets.

@MichaelBelousov
Last active January 27, 2021 15:29
Show Gist options
  • Save MichaelBelousov/d8a37658d25f6f019fa386bed619b84b to your computer and use it in GitHub Desktop.
Save MichaelBelousov/d8a37658d25f6f019fa386bed619b84b to your computer and use it in GitHub Desktop.
even more hooks - create server script
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