Home

Awesome

🔌 Up

Check if a website is up right now in Deno.

Deno CI GitHub Contributors Deno Starter Made by Denorg TypeScript semantic-release

⭐ Getting started

Import the isUp function and use it:

import { isUp } from "https://deno.land/x/up/mod.ts";

const result = await isUp("https://google.com"); // true

CLI with DPX

After installing DPX, you can directly use the CLI using the dpx command:

dpx up https://google.com

CLI

Alternatively, you can use it directly from the CLI:

deno run --allow-net https://deno.land/x/up/mod.ts https://google.com

You can also install it globally using the following:

deno install --allow-net -n up https://deno.land/x/up/mod.ts

Then, the package is available to run:

up https://google.com # Result: https://google.com is up

Configuration

Required permissions:

  1. --allow-net

👩‍💻 Development

Run tests:

deno test --allow-net

⭐ Related

📄 License

MIT © Denorg

<p align="center"> <a href="https://den.org.in"> <img width="100" alt="" src="https://raw.githubusercontent.com/denorg/denorg/master/logo.svg"> </a> </p> <p align="center"> <sub>A project by <a href="https://den.org.in">Denorg</a>, the world's first Deno-focused community<br>organization and consulting company. <a href="https://den.org.in">Work with us →</a></sub> </p>