New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

aparector

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

aparector

Current module wraps Apache Fineract in ORM-like style. Authorization implemented via HTTP Basic.

  • 0.0.2
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
5
decreased by-16.67%
Maintainers
1
Weekly downloads
 
Created
Source

Aparector

Current module wraps Apache Fineract in ORM-like style. Authorization implemented via HTTP Basic. Endpoints covered: clients, loans, loanproducts.

How to setup

npm install aparector --save

How to work with

For example if you have need to read first 10 clients from the API you might need to do something similar to:

// Your specific endpoint for api, username and password
import {endpoint, username, password} from '../config';
import AparectorHttpBasic from 'aparector/build/AparectorHttpBasic';
import ClientsCollection from 'aparector/build/models/client/ClientsCollection';
const clients = new ClientsCollection();
const options = {limit: 10};
await clients.read(options);
// to access clients use clients.items
}

Keywords

FAQs

Package last updated on 15 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

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