W3C Introduction to Web Components - explainer/overview of the technologies
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
var feathers = require('feathers'); | |
var bodyParser = require('body-parser'); | |
// An in-memory service implementation | |
var memory = require('feathers-memory'); | |
// Create an in-memory CRUD service for our Todos | |
var todoService = memory(); | |
var app = feathers() | |
// Set up REST and SocketIO APIs | |
.configure(feathers.rest()) |