Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/boly38/taiga-node-client
NodeJS Taiga ReST client
https://github.com/boly38/taiga-node-client
api hacktoberfest nodejs rest-api taiga
Last synced: about 1 month ago
JSON representation
NodeJS Taiga ReST client
- Host: GitHub
- URL: https://github.com/boly38/taiga-node-client
- Owner: boly38
- License: mit
- Created: 2021-12-16T16:25:54.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2021-12-16T16:46:48.000Z (almost 3 years ago)
- Last Synced: 2024-10-05T06:30:52.667Z (about 2 months ago)
- Topics: api, hacktoberfest, nodejs, rest-api, taiga
- Language: JavaScript
- Homepage:
- Size: 8.79 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Taiga node client
NodeJS [Taiga](https://www.taiga.io/) ReST client - rely on [Taiga ReST API](https://docs.taiga.io/api.html)
## Features
- login
- list projects
- select project
- list user stories status
- select user stories status
- dry remove user stories by status
- remove user stories by status
- remove a user story by id## Requirements
A sample usage is defined into `index.js`
To setup Taiga client, you could rely on constructor options or environment variables.
### Example of Environment variable setup
```
export HTTPS_PROXY=http://myproxy:8080 (optional)
export TAIGA_API_ENDPOINT=https://taiga.mycompany.com
export [email protected]
export TAIGA_API_PASSWORD=totoSuperS3cretPassword
```### Setup sample
To do only one time:
```
git clone https://github.com/boly38/taiga-node-client.git
cd taiga-node-client/
npm install
```### Run sample
Usage:
```
node index.js
```
or
```
TAIGA_DEBUG=1 node index.js
```## How to contribute
You're not a dev ? just submit an issue (bug, improvements, questions).
else suggest your [PR](https://github.com/boly38/taiga-node-client/pulls) with motivations in a dedicated issue.