Toggle navigation
Toggle navigation
This project
Loading...
Sign in
201side
/
floater
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
3
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
robin*
2020-12-09 20:32:09 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
494aceca09acd03d2deef768f50c093a3acbcf7e
494aceca
1 parent
b9748d19
bodyParser 추가
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
0 deletions
src/server.js
src/server.js
View file @
494acec
...
...
@@ -4,4 +4,8 @@ const bodyParser = require('body-parser');
require
(
'express-async-errors'
);
const
app
=
express
();
app
.
use
(
bodyParser
.
urlencoded
({
extended
:
true
}));
app
.
use
(
bodyParser
.
json
());
module
.
exports
=
app
;
...
...
Please
register
or
login
to post a comment