https://github.com/ivyhjk/khipu-client-nodejs-example
https://github.com/ivyhjk/khipu-client-nodejs-example
Last synced: 4 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/ivyhjk/khipu-client-nodejs-example
- Owner: ivyhjk
- Created: 2020-01-29T15:18:29.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2025-03-05T20:03:22.000Z (4 months ago)
- Last Synced: 2025-03-05T21:21:43.242Z (4 months ago)
- Language: TypeScript
- Size: 573 KB
- Stars: 0
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Khipu client NodeJS example
The goal of this bundle is provide examples for [Khipu client NodeJS](https://github.com/ivyhjk/khipu-client-nodejs)
## Installation
Clone this repository:
```
git clone https://github.com/ivyhjk/khipu-client-nodejs-example.git
```Install dependencies:
```
npm install
```Generate a new `.env`
```
touch .env
```Add the necessary environment variables into generated `.env` file:
```
KHIPU_RECEIVER_ID=XXX
KHIPU_SECRET=YYY
```Change `XXX` by your receiver identifier and `YYY` by your secret.
## Running
All examples exists in `src/index.ts`, you can edit this file and run your own
methods.To run the default example (`getBanks`):
```
npm run example
```