1.0.1 • Published 8 years ago

@sane/promisify-listen v1.0.1

Weekly downloads
1
License
MIT
Repository
github
Last release
8 years ago

@sane/promisify-listen

Promisify network server listen & close.

Install

npm install @sane/promisify-listen --save

Example

import { promisifyListen } from '@sane/promisify-listen';

let s = promisifyListen(http.createServer(...));
s.listenAsync(31337).then(() => {
    // ...
});

Release

  1. Bump up the version number in package.json
  2. Add a section for the new release in CHANGELOG.md
  3. Run npm run-script compile to ensure it builds
  4. Commit
  5. Run npm publish
  6. Create a git tag for the new release and push it