September 2017
Intermediate to advanced
450 pages
11h 24m
English
Let's perform the following recipe to upgrade our /middleware/rest.js middleware to support JSON API serialization and deserialization:
var restFactory = require('../../middleware/rest');var posts = [{ id: "123", title: string = "My First Blog Post", content: string = "... brevity is the soul of wit...", published: new Date(), author: { id: "1", firstName: "Nicholas", lastName: "McClay", email: "nmcclay@nickmcclay.com" }}];var serialize = { attributes: ['title', 'content', ...
Read now
Unlock full access