Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/camunda-community-hub/camunda-8-connector-openweather-api-nodejs
A Node.js Camunda 8 Connector to retrieve data from the OpenWeather API.
https://github.com/camunda-community-hub/camunda-8-connector-openweather-api-nodejs
camunda-8 openweather-api
Last synced: 30 days ago
JSON representation
A Node.js Camunda 8 Connector to retrieve data from the OpenWeather API.
- Host: GitHub
- URL: https://github.com/camunda-community-hub/camunda-8-connector-openweather-api-nodejs
- Owner: camunda-community-hub
- License: apache-2.0
- Created: 2022-10-26T05:59:18.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2023-12-14T21:00:23.000Z (about 1 year ago)
- Last Synced: 2024-04-16T19:14:48.176Z (8 months ago)
- Topics: camunda-8, openweather-api
- Language: TypeScript
- Size: 173 KB
- Stars: 2
- Watchers: 4
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# camunda-8-connector-openweather-api-nodejs
![Compatible with: Camunda Platform 8](https://img.shields.io/badge/Compatible%20with-Camunda%20Platform%208-0072Ce)
[![](https://img.shields.io/badge/Community%20Extension-An%20open%20source%20community%20maintained%20project-FF4700)](https://github.com/camunda-community-hub/community)
[![](https://img.shields.io/badge/Lifecycle-Proof%20of%20Concept-blueviolet)](https://github.com/Camunda-Community-Hub/community/blob/main/extension-lifecycle.md#proof-of-concept-)A Node.js Camunda 8 Connector to retrieve data from the OpenWeather API.
For instructions on how to run this connector, see the [Camunda 8 Connector SDK for Node.js](https://github.com/camunda-community-hub/connector-sdk-nodejs).
For an explanation of the source code of this connector, see [this tutorial article](https://medium.com/@sitapati/how-to-build-a-camunda-8-connector-using-the-node-js-sdk-5eb3d798f9ff).
## API
### Input
```json
{
"latitude": ".....",
"longitude": ".....",
"units": "....",
"apiKey": "....",
"resultVariable": "..."
}
```### Output
```json
{
[resultVariable || "weather"]: {
"forecast": "....",
"code": "...."
}
}
```