ecliptica #31

Closed
Aliia wants to merge 4 commits from ecliptica into master
Member
No description provided.
Aliia added 2 commits 2024-10-12 13:33:58 +03:00
nekitboy1998 reviewed 2024-10-12 13:37:03 +03:00
@ -0,0 +9,4 @@
const {config} = require("../../../bro.config");
app.use(cors());
app.listen(port, () => {
Owner

app инициализируется глобально, не надо запускать второй сервер

https://git.bro-js.ru/bro-students/multy-stub/src/branch/master/server/index.js

app инициализируется глобально, не надо запускать второй сервер https://git.bro-js.ru/bro-students/multy-stub/src/branch/master/server/index.js
Aliia added 1 commit 2024-10-12 13:37:18 +03:00
nekitboy1998 reviewed 2024-10-12 13:38:58 +03:00
@ -0,0 +1,134 @@
const express = require('express');
const axios = require('axios');
Owner

Данной библиотеки нет в этом приложении, надо добавить (npm i axios)

Данной библиотеки нет в этом приложении, надо добавить (npm i axios)
Aliia added 1 commit 2024-10-12 13:39:23 +03:00
nekitboy1998 reviewed 2024-10-12 13:43:11 +03:00
@ -0,0 +1,48 @@
const express = require('express');
const cors = require('cors');
const app = express();
Owner

Опять заново настраивается app. Он не нужен, нужен только route

Опять заново настраивается app. Он не нужен, нужен только route
Aliia closed this pull request 2024-10-12 22:46:42 +03:00

Pull request closed

Sign in to join this conversation.
No reviewers
No Label
No Milestone
No project
No Assignees
2 Participants
Notifications
Due Date
The due date is invalid or out of range. Please use the format 'yyyy-mm-dd'.

No due date set.

Dependencies

No dependencies set.

Reference: bro-students/multy-stub#31
No description provided.