mirror of
https://github.com/cudr/slate-collaborative.git
synced 2024-10-27 20:34:06 +00:00
25 lines
621 B
JavaScript
25 lines
621 B
JavaScript
const Connection = require('@slate-collaborative/backend')
|
|
const defaultValue = require('./src/defaultValue')
|
|
const server = require('http').createServer()
|
|
|
|
const config = {
|
|
entry: server, // or specify port to start io server
|
|
defaultValue,
|
|
saveTreshold: 2000,
|
|
onAuthRequest: async (query, socket) => {
|
|
// some query validation
|
|
return true
|
|
},
|
|
onDocumentLoad: async pathname => {
|
|
// return initial document ValueJSON by pathnme
|
|
return defaultValue
|
|
},
|
|
onDocumentSave: async (pathname, document) => {
|
|
// save document
|
|
}
|
|
}
|
|
|
|
const connection = new Connection(config)
|
|
|
|
server.listen(9000)
|