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

hapi-couchdb-store

Package Overview
Dependencies
Maintainers
1
Versions
10
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

hapi-couchdb-store

CouchDB REST & front-end API

  • 1.1.1
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
1
Maintainers
1
Weekly downloads
 
Created
Source

hapi-couchdb-store

CouchDB REST & front-end API

Build Status Dependency Status

Scope

The goal is to create very simplistic server for static apps, that can store, synchronise and share data only by secure IDs.

Exposes CouchDB's database & document API* at /api, and a pre-initialised PouchDB Hoodie Store at /store.js.

*CouchDB is in admin party, sensitive APIs are disabled

Install

npm install --save hapi-couchdb-store

Usage

// my-server.js
var Hapi = require('hapi')
var hapiStore = require('hapi-couchdb-store')

// serve static files from ./public
server.route({
  method: 'GET',
  path: '/{param*}',
  handler: {
    directory: {
      path: 'public'
    }
  }
})

server.register({
  register: hapiStore,
  options: {
    // optional. If no options passed, a pouchdb server
    // will be started at http://localhost:5985
    couch: 'http://localhost:5984'
    // Alternatively, pass spawn-pouchdb-server options:
    // https://github.com/gr2m/spawn-pouchdb-server#options
  }
}, function (error) {
  if (error) throw error
})

server.connection({
  port: 8000
})
server.start(function () {
  console.log('Server running at %s', server.info.uri)
})
<!-- index.html -->
<!DOCTYPE html>
<html>
<head>
  <title>My App</title>
</head>
<body>
  <!-- some pretty app here -->

  <script src="/store.js"></script>
  <script>
    var store = new Store('my-shareable-dbname')
    store.add({note: 'hello world!'})
    // see full API at https://github.com/hoodiehq/pouchdb-hoodie-store
  </script>
</body>
</html>

Local setup & tests

git clone git@github.com:hoodiehq/hapi-couchdb-store.git
cd hapi-couchdb-store
npm install
npm test

To start the local dev server, run

npm start

License

MIT

Keywords

FAQs

Package last updated on 10 Sep 2015

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