8000 GitHub - misa198/heroku-awake-js: Keep your herokuapp always awakes.
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content
This repository was archived by the owner on Oct 24, 2024. It is now read-only.

misa198/heroku-awake-js

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

39 Commits
 
 
 
 
 
 
 
 
 
 
< 8000 svg aria-hidden="true" focusable="false" class="octicon octicon-file color-fg-muted" viewBox="0 0 16 16" width="16" height="16" fill="currentColor" display="inline-block" overflow="visible" style="vertical-align:text-bottom">
 
 
 
 

Repository files navigation

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

Contributors 2

  •  
  •  
  • 3076
0