JKL

Update_server

Showing 1 changed file with 12 additions and 0 deletions
const express = require('express');
const app = express();
app.use(express.urlencoded({ extended: false }));
app.use(express.json());
app.get('/keyboard', (req, res) => {
const data = {'type': 'text'}
res.json(data);
});
app.listen(3000, () => console.log('node on 3000'));
\ No newline at end of file