Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ Import the module and create a new client. Passing api keys is optional only if
you don't plan on doing authenticated calls. You can create an api key
[here](https://www.binance.com/userCenter/createApi.html). If you want to create demo/testnet keys click [here](https://demo.binance.com/)


```js
import Binance from 'binance-api-node'

Expand Down Expand Up @@ -91,6 +92,7 @@ client.ws.ticker('BTCUSDT', ticker => console.log(ticker))
```

**Notes:**
- `binance-api-node` fully supports the new algo service introduced on the Decemeber 9th of 2025
- Proxy support is only available in Node.js environment
- Browsers use system/OS proxy settings automatically
- Supports HTTP and HTTPS proxies (use `http://` or `https://` protocol)
Expand Down
5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "binance-api-node",
"version": "0.13.3",
"version": "0.13.5",
"description": "A node API wrapper for Binance",
"main": "dist",
"browser": {
Expand All @@ -15,7 +15,8 @@
},
"files": [
"dist",
"index.d.ts"
"index.d.ts",
"types"
],
"scripts": {
"build": "rm -rf dist && babel src -d dist",
Expand Down
Loading