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

pizzadoor-stocks-manager

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

pizzadoor-stocks-manager

🍕🤖 Stocks manager for Adial pizza ATM (pizzadoor)

latest
npmnpm
Version
0.6.0
Version published
Maintainers
1
Created
Source

Pizzadoor stocks manager

🍕🤖 Stocks manager for Adial pizza ATM (pizzadoor)

Installation

  npm install pizzadoor-stocks-manager

Usage

Quick start

const PizzadoorStocksManager = require('pizzadoor-stocks-manager');

const config = {};
const credentials = {
  adial: {
    username: 'my-username',
    password: 'my-super-secret-password',
  },
};

let manager = new PizzadoorStocksManager(config, credentials);

manager.fetchAndManage().then(atmsData => console.log(atmsData));

Credentials

Here are all the credentials that might be required to work properly.

const credentials = {
  adial: {
    username: 'my-username',
    password: 'my-super-secret-password',
  },
  sendgrid: {
    apiKey: 'my-api-key',
  },
};

Config

Take a look at the sample.config.js file at the root of the repo to get all the possible settings available.

Issues

Found a bug? Feel free to contact me or open an issue on github. You can also contribute by creating a pull request.

Improvements

This project has recently been migrated to Typescript due to an external need. The typeness support is partial and mostly ensured to have type at the external interface. The internal code is not properly typed. Since a lot of the code is scraping, its format is not stable and it is not easy to type. If you are interested in improving the typing, please feel free to submit a PR.

FAQs

Package last updated on 08 Mar 2023

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