woke-dyno
There are some hosting services like Render.com that will allow you to host a server for free, but with some limitations. If it does not receive any web traffic for a set period of time, your free server will be put to sleep, leaving the next user to visit with a possibly long wait time (up to thirty seconds!) as your server starts up again. This is long enough for many users to assume the site is broken and move on. woke-dyno is a tiny utility to prevent your server from sleeping when not in use.
woke-dyno will perform a simple HTTP request to whatever url you provide, at regular intervals. If you use the url of your free server, that single GET request will be sufficient to prevent it from going dormant, so that visitors will not be made to endure unreasonably long loading times.
Installation
To install with npm:
npm install --save woke-dyno
To install with Yarn:
yarn add woke-dyno
Use
Import the default export from woke-dyno (a function) and invoke it with the url of your server as an argument. Call the .start()
method on the returned object to start woke-dyno:
import express from "express";
import wokeDyno from "woke-dyno";
const SELF_URL = "https://hotdogisasandwich.com";
const app = express();
...
const dynoWaker = wokeDyno(SELF_URL);
app.listen(PORT, () => {
dynoWaker.start();
});
Options
By default, woke-dyno will make its HTTP request once every 14 minutes, with no naptime. By passing an options object, instead of a string, you can change the default settings:
...
const dynoWaker = wokeDyno({
url: SELF_URL,
interval: 1000 * 60 * 20,
startNap: [5, 0, 0, 0],
endNap: [9, 59, 59, 999]
});
app.listen(PORT, () => {
dynoWaker.start();
});
url
(String): The URL of the server to wakeinterval
(Number): The interval to wait between fetch requests, in millisecondsstartNap
(Number[]): An array of four numbers, representing the time to begin "napping" ([h, m, s, ms])endNap
(Number[]): An array of four numbers, representing the time to stop "napping" and resume fetch requests ([h, m, s, ms])
Because free hosting providers usually limit your free server time, you may want to use the startNap
and endNap
parameters to let your server sleep during times that it is unlikely to be used. The start and end times are entered as arrays in the format: [hours, minutes, seconds, milliseconds], and are in Coordinated Universal Time (UTC).
Methods
Upon invoking the default export from woke-dyno with your chosen options, you will be returned an object with two methods:
start()
: Starts woke-dyno, using the configured optionsstop()
: Clears the current timer, stopping woke-dyno
Credits
woke-dyno was made by Dennis Hodges, a JavaScript developer.
License
Copyright © 2019 Dennis Hodges
The MIT License
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
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 OR COPYRIGHT HOLDERS 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.