@orderinator/buda

buda

Usage no npm install needed!

<script type="module">
  import orderinatorBuda from 'https://cdn.skypack.dev/@orderinator/buda';
</script>

README

Using this module in other modules

Here is a quick example of how this module can be used in other modules. The TypeScript Module Resolution Logic makes it quite easy. The file src/index.ts is a barrel that re-exports selected exports from other files. The package.json file contains main attribute that points to the generated lib/index.js file and typings attribute that points to the generated lib/index.d.ts file.

  • To use the Orderinator class in a TypeScript file -
import { Orderinator as Buda } from "@orderinator/buda";

const buda = new Buda("API_KEY", "API_SECRET");
buda.balances();
  • To use the Orderinator class in a JavaScript file -
const Buda = require('@orderinator/buda').Orderinator;

const buda = new Buda('API_KEY', 'API_SECRET');
buda.balances();