0.9.6 • Published 5 years ago

rakuten-auto-login v0.9.6

Weekly downloads
5
License
GPL-3.0
Repository
github
Last release
5 years ago

rekuten-auto-login

楽天証券の MarketSpeed への自動ログインモジュール

インストール

npm install rakuten-auto-login --save

使い方

import { MarketSpeed, InputType } from 'rakuten-auto-login';

const config = require('../../config/config');

const input: InputType = {
  user: config.id,
  password: config.password,
  version: '15.4',
  dir: 'C:/Program Files (x86)/MarketSpeed/MarketSpeed',
  filename: 'MarketSpeed.exe',
};
const marketSpeed = new MarketSpeed(input);
marketSpeed.login();