Skip to content

Commit

Permalink
Handle custom headers
Browse files Browse the repository at this point in the history
  • Loading branch information
benoitmugnier committed Oct 14, 2019
1 parent 0c1119e commit d79b7b2
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 0 deletions.
15 changes: 15 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,21 @@ server.start({
});
```

or add custom headers

```js
server.start({
port: 4200,
host: '192.99.100.01',
headers : [
{name:'X-Content-Type-Options', value:'nosniff'},
{name:'X-XSS-Protection', value:'1; mode=block'},
{name:'Strict-Transport-Security', value:'max-age=31536000'},
{name:'X-Frame-Options', value:'DENY'},
]
directories: ['./public', './bower_components']
});
```

## Global Install

Expand Down
11 changes: 11 additions & 0 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,19 @@ exports.start = function(options, _onStarted) {
let directories = options.directories || [directory];
let file = options.file || FILE;
let host = options.host || HOST;
let headers = options.headers || [];
let onStarted = _onStarted || function() {};

//Set custm headers (for security, etc...)
if (headers.length) {
app.use(function(req, res, next) {
headers.forEach(function(header) {
return res.setHeader(header.name, header.value);
});
next();
});
}

app.use(compression());

// First, check the file system
Expand Down

0 comments on commit d79b7b2

Please sign in to comment.