Skip to content
This repository has been archived by the owner on Nov 2, 2021. It is now read-only.

set header Content-Type to JSON #199

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions backend/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@ function respond(req, res, next) {
}

function createFile(req, res, next){
//Set header content as JSON
res.header('content-type', 'json');
// create a new file
fs.writeFile(req.body.filename, req.body.content, function(err) {
if(err) {
Expand Down