summaryrefslogtreecommitdiff
path: root/app.js
blob: ca7f8cb3e8b1a288d167d4df2ca37abe31db7e45 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
const feathers = require('@feathersjs/feathers');
const express = require('@feathersjs/express');
const socketio = require('@feathersjs/socketio');
const cors = require('cors')



const app = express(feathers());

app.use(express.json());
app.use(express.urlencoded({ extended: true }));
app.use(express.static(__dirname));
app.use(express.errorHandler());
app.use(cors());

app.configure(express.rest());
app.configure(socketio());


module.exports = app;