https://github.com/binance/binance-connector-node
const { Spot } = require('@binance/connector')
const client = new Spot()
client.tickerPrice('SHIBUSDT').then(response => console.log(response.data))
由于现货价格接口不需要认证 所以可以省略key和secret
推荐在外国主机上运行代码
本地要走sock5代理 应该要改造一下connector里的axios实例化代码

具体参考 这里
