https://github.com/fvdm/nodejs-worldtides
API wrapper for WorldTides.info on Node.js (unofficial)
https://github.com/fvdm/nodejs-worldtides
environment nodejs ocean tides worldtides
Last synced: about 2 months ago
JSON representation
API wrapper for WorldTides.info on Node.js (unofficial)
- Host: GitHub
- URL: https://github.com/fvdm/nodejs-worldtides
- Owner: fvdm
- License: unlicense
- Created: 2018-08-17T11:23:30.000Z (almost 8 years ago)
- Default Branch: develop
- Last Pushed: 2025-10-22T14:46:24.000Z (8 months ago)
- Last Synced: 2025-10-29T13:32:21.800Z (8 months ago)
- Topics: environment, nodejs, ocean, tides, worldtides
- Language: JavaScript
- Homepage: https://www.npmjs.com/package/worldtides
- Size: 88.9 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
README
# worldtides
API wrapper for [WorldTides.info](https://www.worldtides.info) on [Node.js](https://nodejs.org) (unofficial)
[](https://github.com/fvdm/nodejs-worldtides/releases)
[](https://github.com/fvdm/nodejs-worldtides/actions/workflows/node.js.yml)
[](https://coveralls.io/github/fvdm/nodejs-worldtides?branch=master)
## Usage
You provide the parameters in an _object_ and it returns a _Promise_.
When a parameter only needs to be 'present' you still need to give it a value,
like an empty string `''` or `true`, it can be anything.
The `date`, `localtime` and `start` params are auto formatted from strings and Date.
See the [**API documentation**](https://www.worldtides.info/apidocs) for details.
```js
const tides = require ('worldtides');
// Get tide extremes for the next 2 weeks (3 credits)
tides ({
key: 'abc123',
extremes: '',
length: 1209600,
stationDistance: 15,
lat: 52.381158,
lon: 4.4837275,
})
.then (data => data.extremes)
.then (console.table)
.catch (console.error);
```
## Installation
`npm i worldtides`
## Configuration
You can add the configuration params in the same arguments
object as the API request method.
```js
const tides = require ('worldtides');
tides ({
key: 'abc123',
timeout: 5000,
...params,
});
```
### Parameters
param | type | default | description
:---------|:-------|:------------|:-----------
[origin] | string | `no-origin` | Origin on allow list
[timeout] | number | `5000` | Request time out in ms
## Unlicense
This is free and unencumbered software released into the public domain.
Anyone is free to copy, modify, publish, use, compile, sell, or
distribute this software, either in source code form or as a compiled
binary, for any purpose, commercial or non-commercial, and by any
means.
In jurisdictions that recognize copyright laws, the author or authors
of this software dedicate any and all copyright interest in the
software to the public domain. We make this dedication for the benefit
of the public at large and to the detriment of our heirs and
successors. We intend this dedication to be an overt act of
relinquishment in perpetuity of all present and future rights to this
software under copyright law.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR
OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
OTHER DEALINGS IN THE SOFTWARE.
For more information, please refer to
## Author
[Franklin](https://frankl.in)
| [Buy me a coffee](https://frankl.in/donating)