Skip to content

Commit

Permalink
update readme
Browse files Browse the repository at this point in the history
  • Loading branch information
carlosmiei committed Feb 8, 2025
1 parent a9e047e commit 496de06
Showing 1 changed file with 17 additions and 2 deletions.
19 changes: 17 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,15 +36,30 @@ This project is designed to help you make your own projects that interact with t
<a href="https://t.me/binance_api_english">Support</a>
</p></b>

#### Installation: **`npm install -s node-binance-api`**
#### Installation

```
npm install -s node-binance-api
```

[![npm install node-binance-api](https://nodei.co/npm/node-binance-api.png?mini=true)](https://npmjs.org/package/node-binance-api)

#### Community Telegram Chat

https://t.me/nodebinanceapi


#### Getting started
#### Getting started (ESM)
```javascript
import Binance from 'node-binance-api';
async function run() {
const exchange = new Binance();
const res = await exchange.futuresTime();
console.log( res );
}
```

#### Getting started (CJS)
```javascript
const Binance = require('node-binance-api');
const binance = new Binance().options({
Expand Down

0 comments on commit 496de06

Please sign in to comment.