Socket
Socket
Sign inDemoInstall

couch-daemon-bridge

Package Overview
Dependencies
9
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    couch-daemon-bridge

Use CouchDBs os_daemons with node.


Version published
Weekly downloads
4
Maintainers
1
Created
Weekly downloads
 

Readme

Source

couch-daemon-bridge

Build Status

Ease the use of CouchDBs os_daemons with node.

Usage

var daemon = require('couch-daemon-bridge')(process.stdin, process.stdout, function() {
  process.exit(0);
});

// Log a message
daemon.info('My daemon is starting.');
daemon.debug('I have so much wow...');
daemon.error('An error occured!');

// Request configuration
daemon.get('httpd.bind_address', function(data) {
  // data is now a string holding the value
});

Contributing

  1. Write tests with tap
  2. Lint your code with npm run jshint
  3. Run the tests with npm test

(c) 2013 Johannes J. Schmidt

Keywords

FAQs

Last updated on 06 May 2014

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc