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

fastify-couchdb

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

fastify-couchdb

Fastify CouchDB connection plugin

  • 0.2.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

fastify-couchdb

js-standard-style

Fastify CouchDB connection plugin, with this you can share the same CouchDB connection in every part of your server.

Under the hood the popular nano module is used, with the options that you pass to register passed to the nano instance.

Install

npm i fastify-couchdb --save

Usage

Simply add it to your project with register and you're done!

When registering you can pass any options supported by nano to the plugin:

  fastify.register(require('fastify-couchdb'), {
    url: 'http://localhost:5984',
    requestDefaults : { "proxy" : "http://someproxy" },
    // etc
  })

This plugin will add the couch namespace in your Fastify instance which you can treat exactly like an instance of nano. Inside your routes you can then access the full range of nano's methods documented here.

Example:

const fastify = require('fastify')

fastify.register(require('fastify-couchdb'), {
  url: 'http://localhost:5984'
})

fastify.get('/rabbit', (req, reply) => {
  const rabbits = this.couch.db.use('rabbits')
  rabbits.get('whiterabbit', function(err, body) {
    reply.send(err || body)
  });

})

Async await is support as well if you prefer:

const fastify = require('fastify')

fastify.register(require('fastify-couchdb'), {
  url: 'http://localhost:5984'
})

fastify.get('/rabbit', async (req, reply) => {
  try {
    const rabbits = fastify.couch.db.use('rabbits');
    const body = await rabbits.get('whiterabbit')
    reply.send(body);
  }
  catch(err) {
    reply.send(err);
  }

})

Development and Testing

First, start couchdb with:

$ npm run couchdb

Then in another terminal:

$ npm test

License

Licensed under Apache-2.0.

Keywords

FAQs

Package last updated on 25 Jul 2018

Did you know?

Socket

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
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc