fastboot-app-server icon indicating copy to clipboard operation
fastboot-app-server copied to clipboard

A production-ready app server for running Ember FastBoot apps

Results 33 fastboot-app-server issues
Sort by recently updated
recently updated
newest added

A header added in a before middleware is added twice to the response. Steps to reproduce: 1. Create a new Ember application. 2. Install `ember-cli-fastboot` and `fastboot-app-server`. 3. Create a...

Allows easier construction and better separation of custom Express servers.

enhancement

The default config in readme: https://github.com/ember-fastboot/fastboot-app-server#quick-start is setting `gzip: true` and `chunkedResponse: true`, but it seems the second seems to turn the first one off. Is this expected?

I would like to set a `last-modified` or `etag` header based on the data that we load when rendering the app. Is this possible? How is the ETag header computed...

enhancement

## The devDependency [request-promise](https://github.com/request/request-promise) was updated from `4.2.3` to `4.2.4`. 🚨 [View failing branch](https://github.com/ember-fastboot/fastboot-app-server/compare/master...ember-fastboot:greenkeeper%2Frequest-promise-4.2.4). This version is **covered** by your **current version range** and after updating it in your project...

greenkeeper

It appears that Chrome's "restore tab" feature breaks Fastboot apps hosted by fastboot-app-server. It looks like Chrome's restore feature pulls a cached copy of the page HTML when it restores...

Hi, we are in the process of enabling our ember app for fastboot. So far it works very well when using `ember serve`, but it's not yet working with fastboot-app-server:...

The initial response for the html page is missing `Content-Type: text/html; charset=utf-8`. I think the reason this is happening is `express-http-server.js` has the following code: ``` 52 if (this.distPath) {...

Regarding spawning new workers, the README says: ``` The app server will automatically spawn a new worker if one dies while handling a request. ``` This should only happen if...