Socket
Socket
Sign inDemoInstall

ember-fastboot-server

Package Overview
Dependencies
Maintainers
2
Versions
22
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ember-fastboot-server - npm Package Compare versions

Comparing version 0.6.0 to 0.6.1

.vscode/launch.json

7

lib/ember-app.js

@@ -89,2 +89,9 @@ var fs = require('fs');

})
.then(function(instance) {
var fastbootInfo = instance.lookup('info:-fastboot');
return fastbootInfo.deferredPromise.then(function() {
return instance;
});
})
.then(serializeHTML(doc, rootElement));

@@ -91,0 +98,0 @@ };

@@ -0,1 +1,2 @@

var RSVP = require('rsvp');
var FastBootRequest = require('./fastboot-request');

@@ -10,5 +11,12 @@

this.response = response;
this.deferredPromise = RSVP.resolve();
this.request = new FastBootRequest(request, hostWhitelist);
}
FastBootInfo.prototype.deferRendering = function(promise) {
this.deferredPromise = this.deferredPromise.then(function() {
return promise;
});
}
/*

@@ -15,0 +23,0 @@ * Registers this FastBootInfo instance in the registry of an Ember

2

package.json
{
"name": "ember-fastboot-server",
"version": "0.6.0",
"version": "0.6.1",
"description": "Production server for running Ember applications using FastBoot",

@@ -5,0 +5,0 @@ "main": "./lib/server",

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc