Skip to content

Instantly share code, notes, and snippets.

@Barqawiz
Created August 1, 2023 13:10
Show Gist options
  • Save Barqawiz/1270610f0ee15b66d7d90498a63f2c69 to your computer and use it in GitHub Desktop.
Save Barqawiz/1270610f0ee15b66d7d90498a63f2c69 to your computer and use it in GitHub Desktop.
const express = require('express');
const app = express();
app.use(express.json());
// Define your routes here
app.listen(3000, () => {
console.log('Server is running on port 3000');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment