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 1.3.0 to 1.3.1

4

HISTORY.md
# Change History
## 1.3.1 (2014-05-29)
* Fixed issue with logging timing
## 1.3.0 (2014-05-28)

@@ -4,0 +8,0 @@

9

lib/Application.js

@@ -125,6 +125,11 @@ module.exports = Application;

function startOrNot(s) {
debug('starting service %s', getName(s.constructor));
return function() { return s.start ? s.start() : s; };
}
function message(s) {
return function() {
debug('starting service %s', getName(s.constructor));
};
}
// Start them (if we can) in order. If the service has a start() method, it

@@ -137,3 +142,3 @@ // can return a promise to delay the rest of the services from getting

var s = this._running[m];
seq = seq.then(startOrNot(s));
seq = seq.then(message(s)).then(startOrNot(s));
}

@@ -140,0 +145,0 @@

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

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

@@ -39,21 +39,10 @@ # billy

## Tern Support
The source files are all decorated with [JSDoc3](http://usejsdoc.org/)-style
annotations that work great with the [Tern](http://ternjs.net/) code inference
system. Combined with the Node plugin (see this project's `.tern-project`
file), you can have intelligent autocomplete for methods in this library.
## Testing
Testing is done with [Tape](http://github.com/substack/tape) and can be run
with the command `npm test`.
```
$ npm test
```
Automated CI cross-browser testing is provided by
[Testling](http://ci.testling.com/bvalosek/billy), and server-side testing
is done with [Travis CI](https://travis-ci.org/bvalosek/billy).
## License
Copyright 2014 Brandon Valosek
**billy** is released under the MIT license.
MIT
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