송효섭

BACKEND api server initialized

Showing 1 changed file with 7 additions and 0 deletions
1 +const express = require('express');
2 +const app = express();
3 +
4 +app.get('/', (req, res) => {
5 + //res.send('API SERVER IS WORKING');
6 + console.log("api.js 실행");
7 +});
...\ No newline at end of file ...\ No newline at end of file
......