Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

heroku-awake

misa19868MIT1.0.10TypeScript support: included

Keep heroku app always awakes

heroku, herokuapp, dyno, awake, nodejs

readme

Heroku Awake

Keep your herokuapp always awakes.

NPM Version ts Package License

Support Javascript and Typescript

Requirement

  • Node
  • Yarn or NPM

Installation

$ npm i heroku-awake --save
# OR
$ yarn add heroku-awake

Usage

Javascript

const express = require("express");
const herokuAwake = require("heroku-awake");

const PORT = 3000;
const url = "https://your-app.herokuapp.com";

const app = express();

app.listen(PORT, () => {
  // Default application refresh time is 25 mins
  herokuAwake(url);

  // If you want to change application refresh time
  const time = 10;
  herokuAwake(url, time);
});

Typescript

import * as express from "express";
import * as herokuAwake from "heroku-awake";

const PORT = 3000;
const url = "https://your-app.herokuapp.com";

const app = express();

app.listen(PORT, () => {
  // Default application refresh time is 25 mins
  herokuAwake(url);

  // If you want to change application refresh time
  const time = 10;
  herokuAwake(url, time);
});

License

MIT