All Projects → 1000ch → reachable-urls

1000ch / reachable-urls

Licence: other
Check URLs are reachable in text 🕵️

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to reachable-urls

URL-Shortner-Bot-V2
A link shortner telegram bot version 2 with advanced features
Stars: ✭ 18 (-37.93%)
Mutual labels:  url, link
custom-permalinks
Set custom permalinks on a per-post basis in WordPress
Stars: ✭ 17 (-41.38%)
Mutual labels:  url, link
fbvideos
🔗 Easily extract downloadable link of publicly available videos on facebook.
Stars: ✭ 28 (-3.45%)
Mutual labels:  url, link
React Native Hyperlink
A <Hyperlink /> component for react-native that makes urls, fuzzy links, emails etc clickable
Stars: ✭ 572 (+1872.41%)
Mutual labels:  url, link
quill-magic-url
Automatically convert URLs to links in Quill
Stars: ✭ 86 (+196.55%)
Mutual labels:  url, link
link text
Easy to use text widget for Flutter apps, which converts inlined urls into working, clickable links
Stars: ✭ 20 (-31.03%)
Mutual labels:  url, link
commons
Ad-hoc collection of re-usable Java classes.
Stars: ✭ 15 (-48.28%)
Mutual labels:  url
yogurl
Serve files and code over HTTP in one command. The CLI for http://yogurl.io
Stars: ✭ 45 (+55.17%)
Mutual labels:  link
remote-origin-url
Extract the git remote origin URL from your local git repository.
Stars: ✭ 15 (-48.28%)
Mutual labels:  url
All-Url-Uploader
A simple telegram Bot, Upload Media File| video To telegram using the direct download link. (youtube, Mediafire, google drive, mega drive, etc)
Stars: ✭ 122 (+320.69%)
Mutual labels:  url
react-native-twitter-textview
A <TextView/> component for React Native built on top of twitter-text linkification.
Stars: ✭ 71 (+144.83%)
Mutual labels:  link
seourls
phpBB Extension: URL rewriting for phpBB forums
Stars: ✭ 44 (+51.72%)
Mutual labels:  url
short
URL shortening service. 高性能短链接服务。
Stars: ✭ 14 (-51.72%)
Mutual labels:  url
postcss-flexible
🔲 dpr/rem/url transformer for flexible
Stars: ✭ 19 (-34.48%)
Mutual labels:  url
go-qs
A Go port of Rack's query string parser
Stars: ✭ 96 (+231.03%)
Mutual labels:  url
cyber-matrix-ai
Collection of cyber security and "AI" relevant topics
Stars: ✭ 69 (+137.93%)
Mutual labels:  url
Linkt
A lightweight and simple Kotlin library for deep link handling on Android 🔗.
Stars: ✭ 101 (+248.28%)
Mutual labels:  url
remark-external-links
Legacy plugin to automatically add target and rel attributes to external links — please use `rehype-external-links` instead
Stars: ✭ 50 (+72.41%)
Mutual labels:  link
linkify-plus-plus
A userscript/extension which can linkify almost everything. Based on Linkify Plus.
Stars: ✭ 78 (+168.97%)
Mutual labels:  url
uri-query-parser
a parser and a builder to work with URI query string the right way in PHP
Stars: ✭ 38 (+31.03%)
Mutual labels:  url

reachable-urls GitHub Actions Status

Check URLs are reachable in text.

screenshot

Install

$ npm install --save reachable-urls

Usage

CLI

Usage
  $ reachable-urls [<file|glob> ...]

Options
  --compact       Show only not-reachable URLs
  --help          Show help
  --silent        Exit with success always
  --stdin         Check string from stdin
  --version       Show version

JavaScript

import assert from 'assert';
import reachableUrls from 'reachable-urls';

reachableUrls('https://foobarbaz.com https://github.com').then(result => {
  assert.deepEqual(result, {
    'https://github.com': true,
    'https://foobarbaz.com': false
  });
});

License

MIT © Shogo Sensui

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].