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

phonedb

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

phonedb

Contact list storage and management for Node

  • 0.3.0
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
1
Maintainers
1
Weekly downloads
 
Created
Source

PhoneDB

npm version Build Status codecov codebeat badge Dependencies

PhoneDB is a database backed by Redis to store user contact lists. It allows you to easily find which of a user's contacts are also registered with your app. PhoneDB validates phone numbers before they are added.

Installation

If you are using yarn:

yarn add phonedb

or npm:

npm install phonedb --save

Run Redis server:

redis-server

Check out Redis quickstart to install.

Usage

Require PhoneDB:

const PhoneDB = require('phonedb');

Initialize PhoneDB, connecting to a Redis client:

const phoneDB = new PhoneDB(redisClient);

Register a user's phone number with PhoneDB:

phoneDB.register('+14157775555');

Add a user's contacts:

const result = await phoneDB.addContacts(userId, ['+18473335555', '+12127775555']);
// 2

Get a user's contacts:

const contacts = await phoneDB.getContacts(userId);

Get a user's contacts who are also registered with PhoneDB (set registered = true):

const registeredContacts = await phoneDB.getContacts(userId, true);

Get mutual contacts between two users:

const mutualContacts = await phoneDB.getMutualContacts(userId, otherUserId);

Get mutual contacts between two users who are registered:

const mutualRegisteredContacts = await phoneDB.getMutualContacts(userId, otherUserId, true);

Debugging

Add DEBUG=phonedb to the node start script in package.json to see debug output. i.e:

DEBUG=phonedb node server.js

Tests

yarn install # or npm install
npm test

Author

Shane Vitarana :: http://shanev.me :: @shanev

Keywords

FAQs

Package last updated on 13 Jun 2017

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