vas
Version:
simple composable data services using muxrpc
24 lines (23 loc) • 401 B
JavaScript
module.exports = {
root: __dirname,
data: {
things: {
1: {
id: 1,
name: 'desk',
description: 'clean and tidy, wait just kidding.'
},
2: {
id: 1,
name: 'vas',
description: 'want continuous improvement, but need help.'
}
}
},
port: 5000,
url: {
protocol: 'ws',
hostname: 'localhost',
port: 5000
}
}