readme updates

This commit is contained in:
tiagosiebler
2022-08-31 18:03:46 +01:00
parent 20d60da75a
commit b961b5ab27

View File

@@ -27,6 +27,7 @@ Check out my related projects:
- [ftx-api](https://www.npmjs.com/package/ftx-api) - [ftx-api](https://www.npmjs.com/package/ftx-api)
- [bybit-api](https://www.npmjs.com/package/bybit-api) - [bybit-api](https://www.npmjs.com/package/bybit-api)
- [binance](https://www.npmjs.com/package/binance) - [binance](https://www.npmjs.com/package/binance)
- [okx-api](https://www.npmjs.com/package/okx-api)
- Try my misc utilities: - Try my misc utilities:
- [orderbooks](https://www.npmjs.com/package/orderbooks) - [orderbooks](https://www.npmjs.com/package/orderbooks)
- Check out my examples: - Check out my examples:
@@ -50,9 +51,10 @@ Each REST API category has a dedicated REST client. Here are the REST clients an
| Derivatives V3 unified margin | Under Development | | Derivatives V3 unified margin | Under Development |
## Structure ## Structure
This project uses typescript. Resources are stored in 3 key structures: The connector is written in TypeScript. A pure JavaScript version can be built using `npm run build`, which is also the version published to [npm](https://www.npmjs.com/package/bybit-api). This connector is fully compatible with both TypeScript and pure JavaScript projects.
- [src](./src) - the whole connector written in typescript
- [lib](./lib) - the javascript version of the project (compiled from typescript). This should not be edited directly, as it will be overwritten with each release. - [src](./src) - the whole connector written in TypeScript
- [lib](./lib) - the JavaScript version of the project (built from TypeScript). This should not be edited directly, as it will be overwritten with each release.
- [dist](./dist) - the packed bundle of the project for use in browser environments. - [dist](./dist) - the packed bundle of the project for use in browser environments.
- [examples](./examples) - some implementation examples & demonstrations. Contributions are welcome! - [examples](./examples) - some implementation examples & demonstrations. Contributions are welcome!