Created
March 29, 2019 02:39
-
-
Save midnightcodr/d31e70fc110f52b50a7f6649126568e9 to your computer and use it in GitHub Desktop.
hapi-with-mongoose-example
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const Hapi = require('hapi') | |
const Joi = require('joi') | |
const Mongoose = require('mongoose') | |
const Boom = require('boom') | |
const server = Hapi.Server({ | |
port: 3000, | |
routes: { | |
validate: { | |
failAction: (request, h, err) => { | |
throw Boom.badRequest(err.message) | |
} | |
} | |
} | |
}) | |
const PersonSchema = Mongoose.Schema({ | |
firstName: String, | |
lastName: String | |
}) | |
const Person = Mongoose.model('Person', PersonSchema) | |
server.route([ | |
{ | |
method: 'GET', | |
path: '/person', | |
handler: async () => { | |
try { | |
const res = await Person.find().exec() | |
return res | |
} catch (err) { | |
throw err | |
} | |
} | |
}, | |
{ | |
method: 'POST', | |
path: '/person', | |
options: { | |
validate: { | |
payload: { | |
firstName: Joi.string().required(), | |
lastName: Joi.string().required() | |
} | |
} | |
}, | |
handler: async request => { | |
try { | |
const person = new Person(request.payload) | |
const res = await person.save() | |
return res | |
} catch (err) { | |
throw err | |
} | |
} | |
} | |
]) | |
const init = async () => { | |
await Mongoose.connect( | |
'mongodb://localhost:27017/misc', | |
{ useNewUrlParser: true } | |
) | |
await server.start() | |
console.log(`server serving at ${server.info.uri}`) | |
} | |
init() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment