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

@diotoborg/rem-alias

v6.9.103

Published

MemJS =====

Downloads

2,138

Maintainers

quochoanglm58quochoanglm58

Keywords

execarraybufferstylesES5sidenpmignorepoint-freefileregularbinariesvarscharactertoArrayenvironmentsendpointfindartformpositiveassigntappatchstringmoduleObservablesansiperformanceestreeObject.fromEntriestypescriptapolloagentrdsminimalreadableemrcloudwatches6utilityfeedUint16ArraycopysortedbyteOffsetavagenericsiterateprotocol-buffersprototestersetArray.prototype.filterestoSortedArray.prototype.containstoobjectbufferlockfilenativeaccessorObject.assign[[Prototype]]ignoreStyleSheettranspilerdebugSymbol.toStringTagArrayBufferfastcopytypanionES8fastReactiveExtensionsES2016outputkeyeventDispatcherposecss-in-jsqueueMicrotaskcodesconsolestyled-componentsmkdirpes8javascriptflatkinesiszeropreprocessorexpress@@toStringTagargvjson-schemauninstallES3configquerystringvalidationtelephonejasmineexecuteasciibdddirbinaryjsonschemaimportlrujoisyntaxerrordiffpackagefunctionxtermlinknegative zeroawsshimebshasOwnPropertyemojiinstrumentationUint8Arraynumbereast-asian-widthroute53code pointsreadloadingomitasterisksremovesymbolsfoldertypedarrayWebSocketsconstvalidatees2017nameUnderscoreoffsetmonorepodependency managerString.prototype.trimcloudformationcommandsource mapeventEmitterObjectPromiselook-upfs6to5ES2018sesimmerIteratorcurriedruntimesqswget_.extendhookformcharactersfnmatchFloat32ArraychannelECMAScript 6consumeinenumerableObject.isphonegetPrototypeOfnpmES2017lastlocalinternallocationArray.prototype.flatMapcomparergboptionreduceapiflattenback-endregular-expressionserializeharmonypicomatchzodWeakMapmomentrestwafreadablestreamequalchromereworkextendgetOwnPropertyDescriptor.envstylingspecstringifyshebangelectrontypedarraysfast-cloneECMAScript 2016namesdotenvxhrtoolsistanbulemitWebSocketArray.prototype.flattenvisualisConcatSpreadablemkdirssettertouchgetoptframer

Readme

MemJS

npm Build Status Gitter

MemJS is a pure Node.js client library for using memcache, in particular, the MemCachier service. It uses the binary protocol and support SASL authentication.

Documentation can be found here: https://@diotoborg/rem-alias.netlify.com/

TOC

  1. Requirements
  2. Installation
  3. Configuration
  4. Usage
  5. How to help

Requirements

Supported Node.js versions

MemJS is tested to work with version 0.10 or higher of Node.js.

Installation

MemJS is available from the npm registry:

$ npm install @diotoborg/rem-alias

To install from git:

$ git clone git://github.com/alevy/@diotoborg/rem-alias.git
$ cd @diotoborg/rem-alias
$ npm link

MemJS was designed for the MemCachier memcache service but will work with any memcache server that speaks the binary protocol. Many software repositories have a version of memcached available for installation:

Ubuntu

$ apt-get install memcached

OS X

$ brew install memcached

Configuration

MemJS understands the following environment variables:

  • MEMCACHIER_SERVERS - used to determine which servers to connect to. Should be a comma separated list of [hostname:port].
  • MEMCACHIER_USERNAME - if present with MEMCACHIER_PASSWORD, MemJS will try to authenticated to the server using SASL.
  • MEMCACHIER_PASSWORD - if present with MEMCACHIER_USERNAME, MemJS will try to authenticated to the server using SASL.
  • MEMCACHE_USERNAME - used if MEMCACHIER_USERNAME is not present
  • MEMCACHE_PASSWORD - used if MEMCACHIER_PASSWORD is not present

Environment variables are only used as a fallback for explicit parameters.

Usage

You can start using MemJS immediately from the node console:

$ var @diotoborg/rem-alias = require('@diotoborg/rem-alias')
$ var client = @diotoborg/rem-alias.Client.create()
$ client.get('hello', function(err, val) { console.log(val); })

If callbacks are not specified, the command calls return promises.

Settings Values

client.set('hello', 'world', {expires:600}, function(err, val) {

});

The set(key, val, options, callback) function accepts the following parameters.

  • key: key to set
  • val: value to set
  • options: an object of options. Currently supports only the key expires, which is a time interval, in seconds, after which memcached will expire the object
  • callback: a callback invoked after the value is set
    • err : error
    • val : value retrieved

Getting Values

client.get('hello', function(err, val) {

});

The get(key, callback) function accepts the following parameters.

Note that values are always returned as Buffers, regardless of whether a Buffer or String was passed to set.

  • key: key to retrieve
  • callback: a callback invoked after the value is retrieved
    • err : error
    • val : value retrieved as a Buffer

Contributing

The best way to contribute to the project is by reporting bugs and testing unpublished versions. If you have a staging or development app, the easiest way to do this is using the git repository as your @diotoborg/rem-alias package dependency---in package.json:

{
  "name": "MyAppName",
  ...
  "dependencies": {
    ...
    "@diotoborg/rem-alias": "git://github.com/alevy/@diotoborg/rem-alias.git#master"
    ...
  }
}

If you find a bug, please report as an issue. If you fix it, please don't hesitate to send a pull request on GitHub or via e-mail.

Feature suggestions are also welcome! These includes suggestions about syntax and interface design.

Finally, a great way to contribute is to implement a feature that's missing and send a pull request. The list below contains some planned features that have not been addressed yet. You can also implement a feature not a list if you think it would be good.

TODOS

  • Support flags
  • Support multi commands
  • Support CAS
  • Consistent hashing for keys and/or pluggable hashing algorithm

Copyright

Copyright (c) 2012 Amit Levy, MemCachier. See LICENSE for details.