Skip to content

Instantly share code, notes, and snippets.

@abinavseelan
Last active August 24, 2017 08:59
Show Gist options
  • Save abinavseelan/ff252842b2c1a978c4cb7bda84fe99b2 to your computer and use it in GitHub Desktop.
Save abinavseelan/ff252842b2c1a978c4cb7bda84fe99b2 to your computer and use it in GitHub Desktop.
Medium - Image Manipulation with NodeJs - Bootstrapping the application
const express = require('express');
const app = express();
const port = 1337;
app.get('/ping', (request, response) => {
response.send('Pong!');
});
app.listen(port, () => {
console.log(`Server running on port ${port}`);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment