2021-08-10 04:58:26 +02:00
# 🔗 LittleLink-Server
This project is based on the great work from [littlelink ](https://github.com/sethcottle/littlelink )
2021-10-09 06:42:06 +02:00
It takes the same simple approach to a link page and hosts it within a NodeJS server with React Server Side Rendering, containerized for you to use. Now, customizing `LittleLink` with `littlelink-server` is as easy as passing in some environment variables. If you need help configuring this, please see [this video that explains everything ](https://www.youtube.com/watch?v=42SqfI_AjXU ) and a live example at [technotim.live ](https://technotim.live/ ).
2021-08-10 04:58:26 +02:00
2021-10-17 21:24:04 +02:00
## 🚀 Getting Started
## 📍 Supported Links & Buttons
2021-08-11 05:35:59 +02:00
2021-08-26 06:16:20 +02:00
Check the [config ](https://github.com/techno-tim/littlelink-server/blob/master/src/config.js ) file for all supported buttons!
2021-10-06 05:00:18 +02:00
2021-10-17 21:24:04 +02:00
## 📈 Analytics Support
### Google Analytics
2021-10-06 05:00:18 +02:00
See [Getting Started with Analytics ](https://support.google.com/analytics/answer/1008015?hl=en ). After getting your GA Tracking Id, use your tracking Id as environment variable like `GA_TRACKING_ID=G-XXXXXXXXXX` (See the example below)
2021-10-09 07:17:14 +02:00
All buttons clicked will be tracked automatically if `GA_TRACKING_ID` exists.
Sample event for YouTube button.
2021-10-09 07:19:13 +02:00
```javascript
2021-10-16 21:53:23 +02:00
window.gtag('event', 'youtube-button');
2021-10-09 07:17:14 +02:00
```
2021-10-17 21:24:04 +02:00
### Umami
2021-10-16 21:41:08 +02:00
See [Adding a website & Collecting data ](https://umami.is/docs/collect-data ) page to add and generate your tracking code.
Generated tracking code should look like:
```javascript
< script async defer data-website-id = "00000000-1111-2222-3333-444444444444" src = "https://your-umami-app.com/umami.js" > < / script >
```
Use `data-website-id` as environment variable `UMAMI_WEBSITE_ID` and `src` as `UMAMI_APP_URL` .
2021-10-16 21:53:23 +02:00
Sample event for YouTube button.
```javascript
window.umami('youtube-button');
```
2021-10-19 05:44:52 +02:00
## 🩺 Health Check
A health check endpoint exists on `/healthcheck` . If healthy, it will return with a `200` and the following response:
```json
{
"status": "ok"
}
```
2021-11-13 01:35:49 +01:00
To skip express from logging these calls, add the environment variable:
```bash
SKIP_HEALTH_CHECK_LOGS=true
```
2021-10-17 21:24:04 +02:00
## 🐳 Docker
2021-08-19 00:32:47 +02:00
2021-08-27 03:16:24 +02:00
This container image is published on both [GitHub Container Registry ](https://github.com/techno-tim/littlelink-server/pkgs/container/littlelink-server ) and [DockerHub ](https://hub.docker.com/repository/docker/timothystewart6/littlelink-server ) choose whichever one works for you. They will both be updated during CI.
2021-08-11 05:35:59 +02:00
`docker-compose.yml`
```yml
---
2021-09-24 03:44:52 +02:00
version: "3.0"
2021-08-11 05:35:59 +02:00
services:
2021-10-18 04:38:08 +02:00
littlelink-server:
2021-08-11 05:35:59 +02:00
image: ghcr.io/techno-tim/littlelink-server:latest
2021-08-27 03:16:24 +02:00
# dockerhub is also supported timothystewart6/littlelink-server
2021-11-24 04:17:45 +01:00
# image: timothystewart6/littlelink-server:latest
2021-08-11 05:35:59 +02:00
container_name: littlelink-server
environment:
- META_TITLE=Techno Tim
- META_DESCRIPTION=Techno Tim Link page
- META_AUTHOR=Techno Tim
2021-10-09 06:38:21 +02:00
- LANG=en
2021-09-24 03:44:52 +02:00
- META_INDEX_STATUS=all
2021-10-09 07:17:14 +02:00
- GA_TRACKING_ID=G-XXXXXXXXXX
2021-08-11 05:35:59 +02:00
- THEME=Dark
2021-08-14 23:47:16 +02:00
- FAVICON_URL=https://pbs.twimg.com/profile_images/1286144221217316864/qIAsKOpB_200x200.jpg
- AVATAR_URL=https://pbs.twimg.com/profile_images/1286144221217316864/qIAsKOpB_200x200.jpg
- AVATAR_2X_URL=https://pbs.twimg.com/profile_images/1286144221217316864/qIAsKOpB_400x400.jpg
2021-08-11 05:35:59 +02:00
- AVATAR_ALT=Techno Tim Profile Pic
- NAME=TechnoTim
- BIO=Hey! Just a place where you can connect with me!
2021-08-26 02:54:23 +02:00
- FOOTER=Thanks for stopping by!
2021-12-15 16:59:31 +01:00
# use ENV variable names for order, listed buttons will be boosted to the top
- BUTTON_ORDER=YOUTUBE,TWITCH,TWITTER,GITHUB,INSTAGRAM,DISCORD,FACEBOOK,TIKTOK,KIT,PATREON
# you can render an unlimited amount of custom buttons by adding
# the CUSTOM_BUTTON_* variables and by using a comma as a separator.
- CUSTOM_BUTTON_TEXT=Visit My Site,Visit My OTHER Site
- CUSTOM_BUTTON_URL=https://technotim.live,https://www.youtube.com/channel/UCOk-gHyjcWZNj3Br4oxwh0A
- CUSTOM_BUTTON_COLOR=#ED2756,#0085FF
- CUSTOM_BUTTON_TEXT_COLOR=#ffffff,#ffffff
- CUSTOM_BUTTON_ALT_TEXT=Visit my site!,Visit my OTHER Site!
- CUSTOM_BUTTON_NAME=HOMEPAGE,HOMEPAGE2
- CUSTOM_BUTTON_ICON=fas link,fab youtube
- BUTTON_TARGET=_blank # controls the button target html attribute
- STACKOVERFLOW=https://stackoverflow.com/
2021-08-11 05:35:59 +02:00
- GITHUB=https://github.com/timothystewart6
- TWITTER=https://twitter.com/TechnoTimLive
- INSTAGRAM=https://www.instagram.com/techno.tim
2021-08-14 18:39:45 +02:00
- YOUTUBE=https://www.youtube.com/channel/UCOk-gHyjcWZNj3Br4oxwh0A
2021-08-11 05:35:59 +02:00
- TWITCH=https://www.twitch.tv/technotim/
2022-01-09 04:55:23 +01:00
- DISCORD=https://l.technotim.live/discord
2021-08-12 04:08:21 +02:00
- TIKTOK=https://www.tiktok.com/@technotim
2021-08-11 05:35:59 +02:00
- KIT=https://kit.co/TechnoTim
2021-08-26 02:54:23 +02:00
- FACEBOOK=https://facebook.com
- FACEBOOK_MESSENGER=https://facebook.com
- LINKED_IN=https://linkedin.com
- PRODUCT_HUNT=https://www.producthunt.com/
- SNAPCHAT=https://www.snapchat.com/
- SPOTIFY=https://www.spotify.com/
- REDDIT=https://www.reddit.com/
- MEDIUM=https://medium.com
- PINTEREST=https://www.pinterest.com/
- EMAIL=you@example.com
- EMAIL_TEXT=Email Me!
- EMAIL_ALT=you@example.com
2021-09-24 03:44:52 +02:00
- EMAIL_ALT_TEXT=Email me!
2021-10-21 04:30:51 +02:00
- SOUND_CLOUD=https://soundcloud.com
2021-08-26 02:54:23 +02:00
- FIGMA=https://figma.com
- TELEGRAM=https://telegram.org/
- TUMBLR=https://www.tumblr.com/
- STEAM=https://steamcommunity.com/
- VIMEO=https://vimeo.com/
- WORDPRESS=https://wordpress.com/
- GOODREADS=https://www.goodreads.com/
- SKOOB=https://www.skoob.com.br/
- LETTERBOXD=https://letterboxd.com/
- MASTODON=https://mastodon.social/
- MICRO_BLOG=https://micro.blog/
2021-08-26 03:05:53 +02:00
- WHATSAPP=https://www.whatsapp.com/
2021-09-11 22:20:38 +02:00
- STRAVA=https://www.strava.com/
- BUYMEACOFFEE=https://www.buymeacoffee.com/
2021-10-06 05:45:40 +02:00
- GITLAB=https://www.gitlab.com/
2021-10-15 03:45:57 +02:00
- PATREON=https://www.patreon.com/technotim
2021-10-16 20:44:28 +02:00
- DEVTO=https://dev.to/
2021-10-16 21:41:08 +02:00
- UMAMI_WEBSITE_ID=xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx
- UMAMI_APP_URL=https://your-umami-app.com
2021-10-19 02:56:28 +02:00
- PAYPAL=https://www.paypal.me/user
2021-10-19 05:43:09 +02:00
- SLACK=https://slack.com/
2021-12-10 18:11:21 +01:00
- LASTFM=https://last.fm/
2021-12-13 01:17:12 +01:00
- UNTAPPD=https://untappd.com/
2021-12-10 22:50:04 +01:00
- GITEA=https://gitea.io/
- POLYWORK=https://www.polywork.com/
- SIGNAL=https://signal.org/
2021-08-11 05:35:59 +02:00
ports:
- 8080:3000
restart: unless-stopped
security_opt:
- no-new-privileges:true
2021-08-12 04:08:21 +02:00
```
2021-08-14 18:39:45 +02:00
Docker command
2021-10-17 21:24:04 +02:00
```bash
2021-08-14 18:39:45 +02:00
docker run -d \
--name=littlelink-server \
-p 8080:3000 \
-e META_TITLE='Techno Tim' \
-e META_DESCRIPTION='Techno Tim Link page' \
-e META_AUTHOR='Techno Tim' \
2021-10-09 06:38:21 +02:00
-e LANG=en \
2021-09-24 03:44:52 +02:00
-e META_INDEX_STATUS='noindex' \
2021-10-09 07:17:14 +02:00
-e GA_TRACKING_ID='G-XXXXXXXXXX' \
2021-08-14 18:39:45 +02:00
-e THEME='Dark' \
2021-08-14 23:47:16 +02:00
-e FAVICON_URL='https://pbs.twimg.com/profile_images/1286144221217316864/qIAsKOpB_200x200.jpg' \
-e AVATAR_URL='https://pbs.twimg.com/profile_images/1286144221217316864/qIAsKOpB_200x200.jpg' \
-e AVATAR_2X_URL='https://pbs.twimg.com/profile_images/1286144221217316864/qIAsKOpB_400x400.jpg' \
2021-08-14 18:39:45 +02:00
-e AVATAR_ALT='Techno Tim Profile Pic' \
-e NAME='TechnoTim' \
-e BIO='Hey! Just a place where you can connect with me!' \
-e GITHUB='https://github.com/timothystewart6' \
-e TWITTER='https://twitter.com/TechnoTimLive' \
-e INSTAGRAM='https://www.instagram.com/techno.tim' \
-e YOUTUBE='https://www.youtube.com/channel/UCOk-gHyjcWZNj3Br4oxwh0A' \
-e TWITCH='https://www.twitch.tv/technotim' \
2022-01-09 04:55:23 +01:00
-e DISCORD='https://l.technotim.live/discord' \
2021-08-14 18:39:45 +02:00
-e TIKTOK='https://www.tiktok.com/@technotim' \
-e KIT='https://kit.co/TechnoTim' \
2021-08-26 02:16:09 +02:00
-e EMAIL='someone@example.com' \
-e EMAIL_TEXT='Email me!' \
-e FOOTER=Thanks for stopping by! \
2021-08-14 18:39:45 +02:00
--restart unless-stopped \
ghcr.io/techno-tim/littlelink-server:latest
```
2021-10-17 21:24:04 +02:00
## ☸ Kubernetes
2021-08-19 00:32:47 +02:00
2021-08-26 02:16:09 +02:00
[Unofficial helm chart provided by k8s-at-home ](https://github.com/k8s-at-home/charts/tree/master/charts/stable/littlelink-server )
2021-08-19 00:32:47 +02:00
2021-10-17 21:24:04 +02:00
```bash
2021-08-19 00:32:47 +02:00
helm repo add k8s-at-home https://k8s-at-home.com/charts/
helm repo update
helm install littlelink-server \
--set env.TZ="America/New York" \
2021-08-26 02:16:09 +02:00
--set env.META_TITLE="TechnoTim"
2021-08-19 00:32:47 +02:00
k8s-at-home/littlelink-server
```
2021-10-17 21:24:04 +02:00
2021-08-19 00:32:47 +02:00
Or use a values.yaml files
`helm install littlelink-server k8s-at-home/littlelink-server -f values.yaml`
2021-10-17 21:24:04 +02:00
## 👇 What is LittleLink?
2021-08-12 05:29:39 +02:00
![LittleLink ](https://cdn.cottle.cloud/littlelink/social-circle.png )
LittleLink is a lightweight DIY alternative to services like [Linktree ](https://linktr.ee )
and [many.link ](https://www.google.com ). LittleLink was built using [Skeleton ](http://getskeleton.com/ ), a dead simple, responsive boilerplate—we just stripped out some additional code you wouldn't need and added in branded styles for popular services. 😊
![Themes ](https://cdn.cottle.cloud/littlelink/themes.png )
2021-10-16 20:44:28 +02:00
LittleLink has more than 20 company button styles you can use and we'll be throwing more in soon. You'll also find a light and dark theme ready to go. Not a fan of the colors? Update `skeleton-light.css` or `skeleton-dark.css` to the HEX values of your choosing.
2021-08-12 05:29:39 +02:00
![Performance ](https://cdn.cottle.cloud/littlelink/performance.png )
Using [Skeleton ](http://getskeleton.com/ ) let us build something that loads quickly & doesn't have any of the unnecessary bloat you would get from using a large framework for a page that requires nothing more than simplicity. LittleLink scored a 99/100 in performance when tested with [Google Lighthouse ](https://developers.google.com/web/tools/lighthouse ).