Skip to content

Instantly share code, notes, and snippets.

@sean3z
Created October 5, 2017 23:42
Show Gist options
  • Save sean3z/86eeb2b5ddbca4845f2120ce7c29776f to your computer and use it in GitHub Desktop.
Save sean3z/86eeb2b5ddbca4845f2120ce7c29776f to your computer and use it in GitHub Desktop.
Restify 6.0.1 Example
"use strict";
const restify = require('restify');
const app = restify.createServer();
app.get('/', (req, res, next) => {
res.send('Hello, world!');
});
app.listen(8080, () => {
console.log('%s listening at %s', app.name, app.url);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment