https://github.com/bergusman/evotor-node
Evotor API обёртка для облака
https://github.com/bergusman/evotor-node
api client evotor nodejs
Last synced: about 1 month ago
JSON representation
Evotor API обёртка для облака
- Host: GitHub
- URL: https://github.com/bergusman/evotor-node
- Owner: bergusman
- License: mit
- Created: 2018-10-31T20:14:26.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-11-01T21:22:09.000Z (over 7 years ago)
- Last Synced: 2025-10-05T23:28:10.143Z (9 months ago)
- Topics: api, client, evotor, nodejs
- Language: JavaScript
- Homepage: https://evotor.ru
- Size: 8.79 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# evotor-node
Простая JS обёртка для REST API облака Evotor.
Документация к REST API:
https://api.evotor.ru/docs/
### Использование
Установка:
```
$ npm i evotor-node
```
Использование:
```JavaScript
const Evotor = require('evotor-node');
const evotor = new Evotor('TOKEN');
evotor.stores().then((stores) => {
console.log(stores);
});
```