496

GitHub - kentcdodds/netlify-shortener: Your own free URL shortener with Netlify

 5 years ago
source link: https://github.com/kentcdodds/netlify-shortener
Go to the source link to view the article. You can view the picture content, updated content and better typesetting reading experience. If the link is broken, please click the button below to view the snapshot at that time.

README.md

netlify-shortener

Uses netlify's redirect functionality to make a personal URL shortener. Works beautifully :)


Build Status Code Coverage version downloads MIT License

All Contributors PRs Welcome Code of Conduct

The problem

You want a URL shortener for your custom domain and you want an easy way to create and update URLs but you don't want to pay hundreds of dollars a year.

This solution

This relies on Netlify's _redirects file for building a super simple URL shortener where the URLs are managed on GitHub and Netlify handles the redirecting for you.

Table of Contents

Installation

This module is distributed via npm which is bundled with node and should be installed as one of your project's devDependencies:

npm install --save-dev netlify-shortener

Usage

Your project should have a _redirects file that looks like this:

/example http://example.com

# fallback
/*       https://your-website.com

This module exposes a binary that you should use in your package.json scripts. You also need to add a baseUrl to your package.json:

{
  "baseUrl": "https://jsair.io",
  "scripts": {
    "shorten": "netlify-shortener"
  }
}

Then you can run:

npm run shorten # simply formats your _redirects file
npm run shorten https://yahoo.com # generates a short code and adds it for you
npm run shorten https://github.com gh # adds gh as a short URL for you

The netlify-shortener does a few things:

  1. generates a short code if one is not provided
  2. validates your URL is a real URL
  3. adds the URL to the top of _redirects
  4. runs a git commit and push (this will trigger netlify to deploy your new redirect)
  5. Copies the short URL to your clipboard

Netlify's deploys are normally fast enough that the new URL should be deployed by the time you've shared it to someone.

Shell Function

If you want to be able to run this anywhere in the terminal, you can try making a custom function for your shell.

Bash

Place this in your ~/.bash_profile file:

shorten() { node {path-to-local-repo}/node_modules/.bin/netlify-shortener "$1" "$2"; }

Fish

Place this in ~/.config/fish/funcitons/shorten.fish:

function shorten --description "Shorten a URL"
  node {path-to-local-repo}/node_modules/.bin/netlify-shortener $argv
end

(Alternatively, run funced -s shorten and Fish will open your editor. Paste this code into the opened file.)

Windows (cmd)

Using Cmder, add this to your user-alias.cmd file.

shorten=cmd /c "cd /d {path-to-local-repo} && npm run shorten $1 $2"

FAQ

What about analytics?

I don't think Netlify will give you analytics, but you should be able to set up CloudFlare in front of your domain and I think they'll give you analytics.

Can I keep my links private?

Netlify doesn't charge for linking up private repositories (HOW COOL IS THAT!?) so you can make your GitHub repo private and that should keep your links private.

Inspiration

URL shorteners for custom domains and custom short codes are insanely expensive. Hiveam.com was the best price-wise, but the price went up and it's super expensive as well.

So I tried writing a custom netlify function and it worked pretty well, but then I was tipped off by smart people that using Netlify's built-in _redirects functionality would work well and it does!

So I built this tool to make it easier to do this for the two domains I need this for and now you can use it too!

Other Solutions

I'm not aware of any, if you are please make a pull request and add it here!

Contributors

Thanks goes to these people (emoji key):

1500684?v=3
Kent C. Dodds

? ? ? ⚠️ 2036823?v=4
Carl Rosell

? 5865?v=4
Phil Hawksworth

? 2480667?v=4
Matt Ferderer

? 25517624?v=4
Jed Fox

?

This project follows the all-contributors specification. Contributions of any kind welcome!

LICENSE

MIT


About Joyk


Aggregate valuable and interesting links.
Joyk means Joy of geeK