Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

billy

Package Overview
Dependencies
Maintainers
1
Versions
25
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

billy - npm Package Compare versions

Comparing version 0.1.0 to 1.0.0

2

HISTORY.md
# Change History
## 1.0.0 ???
## 1.0.0 (2014-04-22)
* First release

@@ -90,2 +90,7 @@ module.exports = Application;

// s => s or s.start() value if available
function startOrNot(s) {
return function() { return s.start ? s.start() : s; };
}
// Start them (if we can) in order. If the service has a start() method, it

@@ -95,11 +100,11 @@ // can return a promise to delay the rest of the services from getting

// that returns a promise as well.
var allStarted = this._running.reduce(function(seq, service) {
return seq.then(function() {
return service.start ? service.start() : service;
});
}, Promise.resolve());
var seq = Promise.resolve();
for (var m = 0; m < this._running.length; m++) {
var s = this._running[m];
seq = seq.then(startOrNot(s));
}
// Resolve the final started promise
var d = this._dStart;
return allStarted.then(function() {
return seq.then(function() {
d.resolve(this);

@@ -106,0 +111,0 @@ },

{
"name": "billy",
"version": "0.1.0",
"version": "1.0.0",
"description": "A minimal application harness that stays out of your way and out of your code.",

@@ -5,0 +5,0 @@ "author": {

@@ -30,2 +30,11 @@ # billy

## Features
* Dependency injection
* Generic configuration store
* Asynchronous service bootup
* Extremely minimal
* Service-oriented design
* Compatible in all browsers and NodeJS
## Tern Support

@@ -32,0 +41,0 @@

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