Socket
Socket
Sign inDemoInstall

@crowdrz/crowdrz-js

Package Overview
Dependencies
56
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

@crowdrz/crowdrz-js

Simplified wrapper for Social API


Version published
Maintainers
1
Weekly downloads
265
increased by147.66%

Weekly downloads

Readme

Source

Logo

Query builder for social APIs.
Explore the docs »

Report Bug · Request Feature

npm CircleCI npm NPM

Table of Contents

Getting Started

Prerequisites

This project uses node and npm.

  • npm
npm install npm@latest -g

Installation

  1. Install package with npm or yarn.
# NPM
npm install --save @crowdrz/crowdrz-js

# Yarn
yarn add @crowdrz/crowdrz-js
  1. include it in your code.
const Crowdrz = require('@crowdrz/crowdrz-js')

Usage

const Crowdrz = require('@crowdrz/crowdrz-js')

const apiToken = '<api key>'

const facebook = new Crowdrz('facebook')
facebook.setToken(apiToken)
const me = await facebook.call('GET', '/me')
const me2 = await facebook
  .setMethod('GET')
  .setEndpoint('/me')
  .call()
const me3 = await facebook.setEndpoint('/me').get()
console.log(me, me2, me3) // Same Output

Test

npm test

Roadmap

See the open issues for a list of proposed features (and known issues).

Contributing

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.

  1. Fork the Project
  2. Create your Feature Branch (git checkout -b feature/AmazingFeature)
  3. Commit your Changes (git commit -m 'Add some AmazingFeature')
  4. Push to the Branch (git push origin feature/AmazingFeature)
  5. Open a Pull Request

License

Distributed under the MIT License. See LICENSE for more information.

FAQs

Last updated on 27 Aug 2021

Did you know?

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc