Git Product home page Git Product logo

deref's Introduction

deref

A simple Web, API, and CLI interface to find a URL's redirection path without manually opening it. This is a Node.js implementation of deref.link.

Web

The web interace is available at https://deref.gourav.sh.

CLI

Installation

npm i -g deref-node-cli

Usage

$ deref --help

Usage: deref [options]

CLI interface for https://deref.gourav.sh

Options:
  -v, --version       output the version number
  -u, --url <string>  url to trace redirection path
  -j, --json          output raw json response
  -h, --help          display help for command

There is only one required option: -u/--url. If the input does not have a url scheme, http:// is used by default.

$ deref -u l.gourav.sh/github

Start url: http://l.gourav.sh/github
Final url: https://github.com/gouravkhunger

Found 2 redirects:
0 — http://l.gourav.sh/github
1 — https://l.gourav.sh/github
2 — https://github.com/gouravkhunger

You may pass in the -j or --json flag to obtain raw json response for the redirection log:

$ deref -u l.gourav.sh/github -j

{
  redirect_count: 2,
  start_url: 'http://l.gourav.sh/github',
  final_url: 'https://github.com/gouravkhunger',
  route_log: [
    'http://l.gourav.sh/github',
    'https://l.gourav.sh/github',
    'https://github.com/gouravkhunger'
  ]
}

API

The API endpoint accepts POST requests at https://deref.gourav.sh/api. The only required body parameter required to be passed is link.

curl -d "link=l.gourav.sh/github" https://deref.gourav.sh/api

# Formatted for readability
{
  "redirect_count": 2,
  "start_url": "http://l.gourav.sh/github",
  "final_url": "https://github.com/gouravkhunger",
  "route_log": [
    "http://l.gourav.sh/github",
    "https://l.gourav.sh/github",
    "https://github.com/gouravkhunger"
  ]
}

If you pass the -j flag along with the input URL, the response of the CLI is similar to that of the API.

License

MIT License

Copyright (c) 2022 Gourav Khunger

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

deref's People

Contributors

gouravkhunger avatar

Stargazers

 avatar  avatar  avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.