Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ivyhjk/khipu-client-nodejs-example
https://github.com/ivyhjk/khipu-client-nodejs-example
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/ivyhjk/khipu-client-nodejs-example
- Owner: ivyhjk
- Created: 2020-01-29T15:18:29.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2024-10-25T15:55:58.000Z (3 months ago)
- Last Synced: 2024-10-26T03:17:46.816Z (3 months ago)
- Language: TypeScript
- Size: 537 KB
- Stars: 0
- Watchers: 3
- Forks: 1
- Open Issues: 1
-
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
```