Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Handle custom headers #87

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
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
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