npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

riak-js

v1.1.0

Published

Node.js client for Riak

Downloads

211

Readme

riak-js

Node.js client for Riak.

Build Status

Installation

npm install riak-js

Features and documentation

Documentation

Follow updates on Twitter: @riakjs

If you need a tiny little lib, you can use riak-dc

Changelog

1.1.0

  • Support Riak 2.0 (see https://github.com/mostlyserious/riak-js/pull/225)

1.0.3

  • Fix a bug with buckets stream
  • Add possibility to overwrite timeout value in Poolee for any requests

1.0.2

  • Fix javascript error when we use data with an error
  • options.keys / options.buckets are now taken into account with client.keys / client.buckets

1.0.1

  • Remove useless console.log
  • Attach response headers to error, enabling for example tombstone detection on 404.
  • Allow user to override the riak port with HTTP_PORT / PB_PORT environement variables
  • Fix a streaming error with node.js 0.10.x

1.0.0

  • Using riakpbc 2.1 : dropping support for node 0.8 / dropping support for non-streams on protobuf for keys and buckets retrievals.
  • Fix Travis CI
  • Cleaner dependencies

0.10.2

  • Fix HTTP status codes intepreted as errors when using the connection pool (github.com/chirag04 and github.com/domasx2)

0.10.1

  • Support for HTTP connection pooling (github.com/andrewjstone)
  • Fix unwanted errors in ping and save operation callbacks (github.com/matehat)

0.10.0

  • Preliminary support for Protocol Buffers via a single connection.
  • Fetch siblings by default, restoring previous riak-js behavior
  • Populate meta.links when saving an object based on the response's HTTP headers (github.com/accelerated)
  • Fix content length override. Allows handing in streaming data from e.g. connect.js. (github.com/englercj)
  • Only set the language attribute on map and reduce phases. Avoid setting it on phases where it's not according to spec. (github.com/accelerated)

0.9.3

  • Switch testing framework to mocha/should.js (github.com/kenperkins)
  • Remove requirement of a Unix system from package.json (github.com/yawnt)
  • Fix a global leak of HttpSearchMeta (github.com/brianedgerton)

0.9.2

  • Fix Search options so it handles hostname and port (github.com/kenperkins)
  • Fix unwanted vector clock overwriting during link walking (github.com/TauZero)
  • Handle connection errors gracefully so that they don't kill the process

0.9.1

  • Request instrumentation for metrics, logging, etc.
  • Fix a leak in Httpmeta (github.com/rkusa), (#134)
  • Handle content length properly for Unicode data (#132)
  • Fix MapReduce options so it handles hostname and port (github.com/spencergibb)
  • Add support for link-walking (github.com/TauZero)
  • Handle JSONified error messages (github.com/spencergibb)
  • Fix parsing of links on get requests (github.com/TauZero)

0.9.0

  • Complete rewrite in JavaScript (two reasons: better debugging in production deployments, and more people can contribute)
  • Support Riak 1.0 features
  • First class support for streams (Luwak, key listing, Map/Reduce, logging)
  • Faster testing with node-seq + assert
  • Extra HTTP headers can now be passed in via headers (for instance custom usermeta, X-Riak-Meta-*) - these will override whatever has been set elsewhere
  • addSearch is now search
  • The project is open for other implementations
  • Removed Protocol Buffers support – contributions welcome (extend Client in a file called protobuf-client.js along with a protobuf-meta.js)
  • A client-side impl is also possible (look at https://github.com/ded/reqwest)
  • Support for Riak Search, including adding and removing documents directly. Search is namespaced on the client separately: riak.search.find('users', 'email:[email protected]')
  • Moved MapReduce to a separate namespace on the client to separate concerns in a nicer way: riak.mapreduce.add('users').run()
TODO
  • Unify meta in all responses (check getAll, chunked map/reduce) - meta should allow for fine-grained mappings
  • SSL support
  • Use path internally but don't expose it as API (see path branch), to prepare for new URIs in Riak 1.0
  • More rigorous test suite (port from master)
LATER
  • Integrate test backend

0.4.1

  • Add search params [gpascale]
  • SSL client [isaacs]
  • Last-modified date patch [siculars]
  • Add meta.noError404 so that you can prevent 404s from showing up as errors [syrio]
  • Deprecation warnings

0.4.0

  • db.update: convenience method for updating documents
  • Changed debug behaviour: always log to stdout. Not providing a callback will output to console.log regardless of the setting

0.4.0rc3

  • Allow headers to override, useful for reverse proxies sitting between node and Riak
  • URI-encoding bucket/key is now an option (encodeUri)
  • Add documentation for map/reduce arguments
  • Remove agent from meta, which should fix critical bug (#64, #67)
  • Allow logging to alternate streams. And default to stderr, not stdout (thanks Mark!)
  • Add docs for host/port (thanks Ken!)
  • Add the new presort property for Riak Search (thanks Greg!)

0.4.0rc2

  • Major docs update => http://riak-js.org
  • keys=stream emits keys events
  • walk now accepts noJSON
  • Support Map/Reduce timeout option
  • Protobuf interface refactor (still experimental support in 0.4)
  • Minor bug fixes

0.4.0rc1

  • node 0.4.x compatibility
  • npm 1.0 compatibility
  • Minor bug fixes

0.3.6

  • Fix index.js and package.json for npm compat
  • Fix recursing usermeta
  • Fix for luwak location parsing
  • Updates related to Riak Search operations

0.3.0beta6

  • Test backend implementation
  • Connect session store
  • Protobuf parsing is now more robust
  • Replace client every time ECONNREFUSED occurs
  • Initial Riak Search support
  • Minor bugfixing and internals refactoring

0.3.0beta5

  • Add support for bucket listing in HTTP (new Riak 0.14 feature)
  • Updated to CoffeeScript 1.0.0
  • Fixed a memory leak caused by adding too many Event Listeners
  • If there's no vclock present in a Meta, do not send any clientId

License

Simplified BSD License

Copyright 2011 Francisco Treacy. All rights reserved.

Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:

  1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.

  2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.

THIS SOFTWARE IS PROVIDED BY FRANCISCO TREACY ''AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL FRANCISCO TREACY OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

The views and conclusions contained in the software and documentation are those of the authors and should not be interpreted as representing official policies, either expressed or implied, of Francisco Treacy.