All Projects โ†’ IonicaBizau โ†’ Is Ssh

IonicaBizau / Is Ssh

Licence: mit
๐Ÿ Check if an input value is a ssh url or not.

Programming Languages

javascript
184084 projects - #8 most used programming language

is-ssh

Support me on Patreon Buy me a book PayPal Ask me anything Version Downloads Get help on Codementor

Buy Me A Coffee

Check if an input value is a ssh url or not.

โ˜๏ธ Installation

# Using npm
npm install --save is-ssh

# Using yarn
yarn add is-ssh

๐Ÿ“‹ Example

// Dependencies
const isSsh = require("is-ssh");

// Secure Shell Transport Protocol (SSH)
console.log(isSsh("ssh://[email protected]:port/path/to/repo.git/"));
// true

console.log(isSsh("ssh://[email protected]/path/to/repo.git/"));
// true

console.log(isSsh("ssh://host.xz:port/path/to/repo.git/"));
// true

console.log(isSsh("ssh://host.xz/path/to/repo.git/"));
// true

console.log(isSsh("ssh://[email protected]/path/to/repo.git/"));
// true

console.log(isSsh("ssh://host.xz/path/to/repo.git/"));
// true

console.log(isSsh("ssh://[email protected]/~user/path/to/repo.git/"));
// true

console.log(isSsh("ssh://host.xz/~user/path/to/repo.git/"));
// true

console.log(isSsh("ssh://[email protected]/~/path/to/repo.git"));
// true

console.log(isSsh("ssh://host.xz/~/path/to/repo.git"));
// true


console.log(isSsh("[email protected]:/path/to/repo.git/"));
// true

console.log(isSsh("[email protected]:~user/path/to/repo.git/"));
// true

console.log(isSsh("[email protected]:path/to/repo.git"));
// true


console.log(isSsh("host.xz:/path/to/repo.git/"));
// true

console.log(isSsh("host.xz:path/to/repo.git"));
// true

console.log(isSsh("host.xz:~user/path/to/repo.git/"));
// true


console.log(isSsh("rsync://host.xz/path/to/repo.git/"));
// true


// Git Transport Protocol
console.log(isSsh("git://host.xz/path/to/repo.git/"));
// false

console.log(isSsh("git://host.xz/~user/path/to/repo.git/"));
// false

// HTTP/S Transport Protocol
console.log(isSsh("http://host.xz/path/to/repo.git/"));
// false

console.log(isSsh("https://host.xz/path/to/repo.git/"));
// false

// Local (Filesystem) Transport Protocol
console.log(isSsh("/path/to/repo.git/"));
// false

console.log(isSsh("path/to/repo.git/"));
// false

console.log(isSsh("~/path/to/repo.git"));
// false

console.log(isSsh("file:///path/to/repo.git/"));
// false

console.log(isSsh("file://~/path/to/repo.git/"));
// false

โ“ Get Help

There are few ways to get help:

  1. Please post questions on Stack Overflow. You can open issues with questions, as long you add a link to your Stack Overflow question.

  2. For bug reports and feature requests, open issues. ๐Ÿ›

  3. For direct and quick help, you can use Codementor. ๐Ÿš€

๐Ÿ“ Documentation

isSsh(input)

Checks if an input value is a ssh url or not.

Params

  • String|Array input: The input url or an array of protocols.

Return

  • Boolean true if the input is a ssh url, false otherwise.

๐Ÿ˜‹ How to contribute

Have an idea? Found a bug? See how to contribute.

๐Ÿ’– Support my projects

I open-source almost everything I can, and I try to reply to everyone needing help using these projects. Obviously, this takes time. You can integrate and use these projects in your applications for free! You can even change the source code and redistribute (even resell it).

However, if you get some profit from this or just want to encourage me to continue creating stuff, there are few ways you can do it:

  • Starring and sharing the projects you like ๐Ÿš€

  • Buy me a bookโ€”I love books! I will remember you after years if you buy me one. ๐Ÿ˜ ๐Ÿ“–

  • PayPalโ€”You can make one-time donations via PayPal. I'll probably buy a coffee tea. ๐Ÿต

  • Support me on Patreonโ€”Set up a recurring monthly donation and you will get interesting news about what I'm doing (things that I don't share with everyone).

  • Bitcoinโ€”You can send me bitcoins at this address (or scanning the code below): 1P9BRsmazNQcuyTxEqveUsnf5CERdq35V6

Thanks! โค๏ธ

๐Ÿ’ซ Where is this library used?

If you are using this library in one of your projects, add it in this list. โœจ

  • bb-git-upโ€”A low level git url parser.
  • bb-parse-urlโ€”An advanced url parser supporting git urls too.
  • git-upโ€”A low level git url parser.
  • miguelcostero-ng2-toasty (by Sergey Akopkokhyants)โ€”Angular2 Toasty component shows growl-style alerts and messages for your web app
  • nodegit-clone (by Andrew Abramov)โ€”Clone git repository with nodegit
  • normalize-ssh (by Zoltan Kochan)โ€”Normalize a SSH URL
  • parse-pathโ€”Parse paths (local paths, urls: ssh/git/etc)
  • parse-urlโ€”An advanced url parser supporting git urls too.

๐Ÿ“œ License

MIT ยฉ Ionicฤƒ Bizฤƒu

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].