Skip to content

Instantly share code, notes, and snippets.

@dgolant
Created November 7, 2017 15:25
Show Gist options
  • Save dgolant/fa9ba33b275708c967363853507ad0db to your computer and use it in GitHub Desktop.
Save dgolant/fa9ba33b275708c967363853507ad0db to your computer and use it in GitHub Desktop.
const express = require(‘express’); 
const BodyParser = require(‘body - parser’); 
const Celebrate = require(‘celebrate’); 
const { Joi } = Celebrate;  
const app = express(); // use whatever name you like, I tend to default to app
 
app.use(BodyParser.json());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment