New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

place-node

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

place-node

A simple library to interface with the Place REST API. See https://developer.placepay.com for details.

latest
Source
npmnpm
Version
0.5.4
Version published
Maintainers
1
Created
Source

Place Node.js Library

A Node library for interfacing with the Place API

Installation

To install using npm:

npm install place-node

Basic usage


var place = require('place');

// set your api key
place.api_key = = 'private_key_6fsMi3GDxXg1XXSluNx1sLEd';

var account = place.Account.create({
  email: 'joe.schmoe@example.com',
  full_name: 'Joe Schmoe',
  user_type: 'payer'
}).then(function(account) {
  console.log(account.id)
});

Documentation

Read the docs

FAQs

Package last updated on 14 Aug 2018

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