If you want to help feel free to do so :)
This is an API client for the Bunq API.
- Firstly run
yarn
in the root of the project - Then run
yarn build
- To run the example go to that directory and run
yarn
there - Then you can run this project by using
yarn start
yarn watch
This will watch the project for file changes and rebuilds the projectyarn test
This will run the unit testsyarn test:watch
This will run the tests in watch mode
- Firstly import the library
import Bunq from 'bunq.js'
Or
const Bunq = require('bunq.js').default
- Then you can use the Bunq client. The Bunq client accepts some options
{
apiKey: '',
ipAddreses: [
]
}
An example implementation can be found in /example
: