View react-lifecycle-parent-child.jsx
import React from "react"; | |
import { render } from "react-dom"; | |
const ParentComponent = React.createClass({ | |
getDefaultProps: function() { | |
console.log("ParentComponent - getDefaultProps"); | |
}, | |
getInitialState: function() { | |
console.log("ParentComponent - getInitialState"); | |
return { text: "" }; |
View hapi-boom-json-api.js
exports.register = function (plugin, options, done) { | |
plugin.ext('onPreResponse', function (request, reply) { | |
var response = request.response; | |
if (response.isBoom) { | |
var error = { | |
title: response.output.payload.error, | |
status: response.output.statusCode, | |
detail: response.output.payload.message |