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

When a cache (like [https://github.com/tomdale/fastboot-redis-cache](fastboot-redis-cache)) is provided, the Express server [builds middleware](https://github.com/ember-fastboot/fastboot-app-server/blob/master/src/express-http-server.js#L70-L87) to read/write cache entries. To grab responses, it replaces the implementation of `res.send` with one that stores to...

In my case the cache wasn't working because `res.send` was never being called (thus `cache.put` was never called). After changing the implementation to use `res.write` and `res.end` and getting it...

Hi! Is it possible to serve an Ember app using fastboot-app-server but turning off the SSR? I would like to start serving a legacy app using fastboot-app-server following lightning workflow,...

## Version 10 of Node.js (code name Dubnium) has been released! 🎊 To see what happens to your code in Node.js 10, Greenkeeper has created a branch with the following...

greenkeeper

This is a weird bug I couldnt track it down completely yet but Im sure related to the fastboot-app-server. When I build my fastboot image and run it with docker...

The Ember index.html can be minified using [ember-cli-html-minifier](https://github.com/gpoitch/ember-cli-html-minifier). However, templates rendered with the fastboot-app-server show whitespace, newlines and all comments in full glory. Is there a way to have this...

There are a number of internal files in the `dist` directory that are currently publicly exposed by the fastboot server (e.g. `dist/package.json`, `dist/node_modules/*`, etc). Don't think there are any security...

Any reason why there is no option to enable FastBoot Resilient Mode? It would be help full to have the option available to be used.

hi, I would like to have a custom hook to get notified when a download is finished or have access to the caching layer from the downloader, something like the...

```javascript let server = new FastBootAppServer({ distPath: process.env.DIST_PATH, gzip: true, beforeMiddleware(app) { app.use((req, res, next) => { console.log('beforeMiddleware'); next(); }); }, afterMiddleware(app) { app.use((err, req, res, next) => { console.log('afterMiddleware');...