const proxy = require('http-proxy-middleware'); module.exports = function(app) { app.use(proxy('/api/socket', { target: 'ws://localhost:8082', ws: true })); app.use(proxy('/api', { target: 'http://localhost:8082' })); };