Added cors

This commit is contained in:
Zakary Timson 2024-10-30 14:20:55 +00:00
parent 2144d7ef69
commit 3e06856c70
2 changed files with 5 additions and 1 deletions

View File

@ -10,6 +10,7 @@
"author": "",
"license": "MIT",
"dependencies": {
"cors": "^2.8.5",
"express": "^4.21.1",
"i2c-bus": "^5.2.3",
"serialport": "^12.0.0"

View File

@ -1,3 +1,4 @@
import cors from 'cors';
import express from 'express';
import path from 'path';
import APOLLO from './apollo.js';
@ -13,7 +14,9 @@ export default class Daemon {
this.express = express();
this.express.get('/api/*', async (req, res) => {
this.express.use(cors('*'));
this.express.get('/api/*', async (req, res) => {
const cmd = req.params['0'];
res.json(await this.run(cmd));
});