Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rem42/kingoloto-client
https://github.com/rem42/kingoloto-client
Last synced: 3 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/rem42/kingoloto-client
- Owner: rem42
- Created: 2019-09-13T19:04:48.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2024-12-02T19:00:26.000Z (about 1 month ago)
- Last Synced: 2024-12-02T20:19:20.293Z (about 1 month ago)
- Language: TypeScript
- Size: 525 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 30
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# kingoloto-client
[![Greenkeeper badge](https://badges.greenkeeper.io/rem42/kingoloto-client.svg)](https://greenkeeper.io/)
A client for kingoloto using node
[![npm](https://img.shields.io/npm/v/kingoloto-client.svg)](https://www.npmjs.com/package/kingoloto-client)
[![npm](https://img.shields.io/npm/dt/kingoloto-client.svg)](https://www.npmjs.com/package/kingoloto-client)
[![install size](https://packagephobia.now.sh/badge?p=kingoloto-client)](https://packagephobia.now.sh/result?p=kingoloto-client)
[![Greenkeeper badge](https://badges.greenkeeper.io/rem42/kingoloto-client.svg)](https://greenkeeper.io/)## Installation
```sh
npm install kingoloto-client --save
```
## Usage
### TypeScript```typescript
import {Kingoloto} from "kingoloto-client";Kingoloto.init('[email protected]', 'password')
.then((client: Kingoloto) => {
// code
});
```