Skip to content

Instantly share code, notes, and snippets.

@saman-ghm
Created October 11, 2019 19:23
Show Gist options
  • Save saman-ghm/e164ae52be8318eceaffcc6b1f86a7dc to your computer and use it in GitHub Desktop.
Save saman-ghm/e164ae52be8318eceaffcc6b1f86a7dc to your computer and use it in GitHub Desktop.
Refresh token using Node
import express from "express";
const app = express();
app.get('/', (req, res) => {
res.send("Hello world!");
});
app.listen(3000, () => {
console.log(`Server is running in http://localhost:3000`);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment