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

moneylover-client

v1.0.4

Published

Money lover client library for Money Lover.

Downloads

2

Readme

Money Lover Client

This is library for Money Lover, based on (moneylover-cli)) the "simplest way to manage personal finances" (according to their website). It has apps for iOS and Android and also a Webapp.

Money Lover Client uses the API underneath that webapp to let you track your expenses from the nodesjs. Because time they don't give access to the actual api just beacuse so this is a work arount

Installation

npm i  moneylover-client

Usage

Debug

To activate debug mode you can set environmental variable DEBUG to true this can be set at your run command or the environmental in your own computer. This will log all request with a message with the data or problem in the request similar to moneylover-cli.d

DEBUG=true node index.js 

Notes

Important wallet param on all functions should be specified without white spaces, I removed the white spaces to avoid errors when trying to find wallets in the account.

Authentication

Using a MoneyLover account

If you are using a Money Lover account for login, you can log in with the following code.

Login function is needed before using any of the other functions in the library.

const { login } = require('moneylover-client');
const start = async () => {
   const success = login('[email protected]', 'helloworld');
   console.log(success);
};
start();

Wallets

This shows how to request your account wallets.

const {  wallets } = require('moneylover-client');
const start = async () => {
   const wallet = await wallets();
   console.log(wallet);
};
start();

Categories

Recommended to pass a wallet param otherwise more than 258 categories will be fetch as default.

const { categories } = require('moneylover-client');
const start = async () => {
   const cat = await categories({});
   console.log(cat);
};
start();

Transactions

This example shows how to get transactions from all wallets if wallet is provided then transactions will be filter by the wallet specified.

const { transactions } = require('moneylover-client');
const start = async () => {
   const trans = await transactions({
      startDate: '12/01/2021',
      endDate: '12/01/2021',
   });
   console.log(trans);
};
start();

Create Income

This example shows how to get transactions from all wallets if wallet is provided then transactions will be filter by the wallet specified.

const { income } = require('moneylover-client');
const start = async () => {
   const transaction = await income({
      amount: 1000,
      category: 'INCOME',
      date: '12/14/2021',
      wallet: 'CHEKINGSUS',
   });
   console.log(transaction);
};
start();

Create Expense

This example shows how to get transactions from all wallets if wallet is provided then transactions will be filter by the wallet specified.

const { expense } = require('moneylover-client');
const start = async () => {
   const transaction = await expense({
      amount: 1000,
      category: 'EXPENSE',
      date: '12/14/2021',
      wallet: 'CHEKINGSUS',
   });
   console.log(transaction);
};
start();