https://github.com/joblocal/api-client-v5
This the javascript API client for the version 5 of the joblocal API.
https://github.com/joblocal/api-client-v5
Last synced: about 2 months ago
JSON representation
This the javascript API client for the version 5 of the joblocal API.
- Host: GitHub
- URL: https://github.com/joblocal/api-client-v5
- Owner: joblocal
- Created: 2022-08-01T08:25:22.000Z (almost 3 years ago)
- Default Branch: master
- Last Pushed: 2024-02-26T11:20:35.000Z (about 1 year ago)
- Last Synced: 2025-03-01T23:02:10.148Z (3 months ago)
- Language: JavaScript
- Size: 689 KB
- Stars: 0
- Watchers: 4
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: readme.md
- Contributing: contributing.md
Awesome Lists containing this project
README
# Joblocal Api-Client


This package contains a pre-configured devour-client for the Joblocal api
[Devour](https://github.com/twg/devour) - Api client for JSON-Api-Specification compliant resource handling
[Documentation]('https://joblocal.api-docs.io/') - Api Documentation## Requirements
- Yarn or npm## Installation
Using npm:
```sh
$ npm install --save @joblocal/api-client-v5
```Using yarn:
```sh
$ yarn add @joblocal/api-client-v5
```## Usage
After installing the package you can use it as follows.```javascript
import createClient from '@joblocal/api-client-v5';const client = createClient({
url: 'https://api.joblocal.de/v5',
token: 'user_id_token' || () => 'id_token' || null,
});
```## Development
**Installing dependencies:**
```sh
$ npm install
```**Verify by running tests:**
```sh
$ npm test
```## Built with
* [Devour](https://github.com/twg/devour) - Api client for JSON-Api-Specification compliant resource handling
* [Webpack](https://webpack.js.org/) - Application Bundler
* [Jest](https://jestjs.io/) - Test Runner### Also see
* [Jest Api](https://jestjs.io/docs/api)## Contributing
Please read through our [contributing guidelines](https://github.com/joblocal/api-client-v5/blob/master/contributing.md). Included are directions for opening issues, coding standards, and feature requests.## Authors
* **Joblocal GmbH** - *Initial work* - [Joblocal](https://github.com/joblocal)See also the list of [contributors](https://github.com/joblocal/api-client-v5/contributors) who participated in this project.