If you want to help feel free to do so :)
This is an API client for the Bunq API.
- Firstly run
yarnin the root of the project - Then run
yarn build - To run the example go to that directory and run
yarnthere - Then you can run this project by using
yarn start
yarn watchThis will watch the project for file changes and rebuilds the projectyarn testThis will run the unit testsyarn test:watchThis 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: