8000 GitHub - shooontan/sim4me: 🏁sim traffic
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

shooontan/sim4me

Repository files navigation

sim4me

npm version install size Actions Status

This library gets the amount of traffic from sim4.me.

Install

# npm
$ npm install sim4me

# or yarn
$ yarn add sim4me

Usage

const { traffic } = require('sim4me');

(async () => {
  try {
    const result = await traffic({
      phone: '09012345678',
    });
    console.log(result);
  } catch (error) {
    console.log(error);
  }
})();

API

traffic(options)

options

Type: object

  • options.phone: string

Target phone number.

return

Type: object

  • object.total: number

Total traffic.

  • object.traffic: number[]

Values of daily traffic.

  • object.label: number[]

Dates.

About

🏁sim traffic

Resources

Stars

Watchers

Forks

Packages

No packages published
0