A nimble Mastodon web client
 
 
 
 
 
Go to file
patak 9f005a0a59 chore: release v0.11.0 2024-02-19 10:33:00 +01:00
.github chore(deps): update docker/setup-qemu-action action to v3 (#2558) 2024-01-15 08:35:52 +00:00
.stackblitz
.vscode
components fix: fix tooltip overlaps with editor tool popup on Mobile (#2582) 2024-02-11 06:39:45 +00:00
composables fix(suggestion): allow case-insensitive emoji suggestion (#2565) 2024-02-19 09:23:58 +00:00
config refactor: migrate from shiki to shikiji (#2520) 2023-12-20 18:54:40 +00:00
constants feat: filter notifications by type (#2371) 2023-09-06 09:13:16 +00:00
docs refactor: migrate from shikiji to shiki v1 (#2591) 2024-02-15 07:43:09 +00:00
https-dev-config
images
layouts feat: search back to the right (#2071) 2023-05-06 17:49:15 +02:00
locales feat(i18n): Update portuguese from Portugal translation (#2577) 2024-02-08 15:41:26 +00:00
middleware feat: upgrade to masto.js v6 (#2530) 2024-01-09 08:56:15 +00:00
mocks refactor: migrate from shiki to shikiji (#2520) 2023-12-20 18:54:40 +00:00
modules chore(pwa): improve DX for `$pwa` (#2498) 2023-12-09 16:04:41 +00:00
pages feat: add new setting to disable blur for low-performance device (#2561) 2024-01-18 08:18:49 +00:00
patches chore: fix pwa type 2023-07-04 13:32:22 +08:00
plugins fix: some keyboard shortcuts not working in non-english (#2324) 2023-10-13 07:13:37 +00:00
public chore: add generate pwa icons script (#2130) 2023-05-29 16:52:27 +02:00
public-dev chore: add generate pwa icons script (#2130) 2023-05-29 16:52:27 +02:00
public-staging chore: add generate pwa icons script (#2130) 2023-05-29 16:52:27 +02:00
scripts refactor: fix lint warnings (#2564) 2024-01-21 09:30:15 +01:00
server feat: add Vercel KV (#2533) 2024-01-02 10:58:37 +00:00
service-worker refactor: fix lint warnings (#2564) 2024-01-21 09:30:15 +01:00
styles fix: btn-solid text color for dark mode (#2471) 2023-11-13 17:30:36 +00:00
tests feat: upgrade to masto.js v6 (#2530) 2024-01-09 08:56:15 +00:00
types feat: upgrade to masto.js v6 (#2530) 2024-01-09 08:56:15 +00:00
utils
.dockerignore refactor: migrate from shiki to shikiji (#2520) 2023-12-20 18:54:40 +00:00
.env.example feat: add Vercel KV (#2533) 2024-01-02 10:58:37 +00:00
.env.mock
.eslintignore chore: add generate pwa icons script (#2130) 2023-05-29 16:52:27 +02:00
.eslintrc chore(deps): update lint (#2233) 2023-08-02 10:28:18 +00:00
.gitignore feat: show emoji tooltip (#2485) 2023-12-22 12:16:46 +00:00
.npmrc chore: remove default npm option 2023-07-04 13:06:17 +08:00
.nvmrc chore(deps): update dependency node to v20 (#2501) 2023-12-05 10:18:22 +00:00
.stackblitzrc
CODE_OF_CONDUCT.md
CONTRIBUTING.md docs: update translation guide file to copy (#2017) 2023-04-25 17:41:51 +02:00
Dockerfile chore: copy across `.npmrc` to docker build (#2152) 2023-06-08 10:53:33 +01:00
LICENSE
README.md refactor: migrate from shikiji to shiki v1 (#2591) 2024-02-15 07:43:09 +00:00
app.vue fix: meta og:url should use the origin of the request instead of elk.zone (#2550) 2024-01-09 08:14:35 +00:00
docker-compose.yaml
elk.svg
emoji-mart-traslation.d.ts
error.vue
netlify.toml
nuxt.config.ts feat: add Vercel KV (#2533) 2024-01-02 10:58:37 +00:00
package.json chore: release v0.11.0 2024-02-19 10:33:00 +01:00
page-lifecycle.d.ts
pnpm-lock.yaml chore(deps): update dependency vitest to ^1.3.0 (#2556) 2024-02-17 17:29:14 +00:00
pnpm-workspace.yaml
shims.d.ts
tsconfig.json
unocss.config.ts fix: btn-solid text color for dark mode (#2471) 2023-11-13 17:30:36 +00:00
vitest.config.ts feat: upgrade to masto.js v6 (#2530) 2024-01-09 08:56:15 +00:00
vue-compiler-options.d.ts fix: augment vueCompilerOptions in `pkg-types` 2023-07-31 17:15:53 +01:00

README.md

Elk logo

Elk alpha

A nimble Mastodon web client


discord chat Start new PR in StackBlitz Codeflow Open board on Volta


Elk screenshots

⚠️ Elk is in Alpha

It is already quite usable, but it isn't ready for wide adoption yet. We recommend you use it if you would like to help us build it. We appreciate your feedback and contributions. Check out the Open Issues and jump in the action. Join the Elk discord server to chat with us and learn more about the project.

Deployment

Official Deployment

The Elk team maintains a deployment at:

Self-Host Docker Deployment

In order to host Elk yourself you can use the provided Dockerfile to build a container with elk. Be aware, that Elk only loads properly if the connection is done via SSL/TLS. The Docker container itself does not provide any SSL/TLS handling. You'll have to add this bit yourself. One could put Elk behind popular reverse proxies with SSL Handling like Traefik, NGINX etc.

  1. checkout source git clone https://github.com/elk-zone/elk.git
  2. got into new source dir: cd elk
  3. build Docker image: docker build .
  4. create local storage directory for settings: mkdir elk-storage
  5. adjust permissions of storage dir: sudo chown 911:911 ./elk-storage
  6. start container: docker-compose up -d

[!NOTE] The provided Dockerfile creates a container which will eventually run Elk as non-root user and create a persistent named Docker volume upon first start (if that volume does not yet exist). This volume is always created with root permission. Failing to change the permissions of /elk/data inside this volume to UID:GID 911 (as specified for Elk in the Dockerfile) will prevent Elk from storing it's config for user accounts. You either have to fix the permission in the created named volume, or mount a directory with the correct permission to /elk/data into the container.

Ecosystem

These are known deployments using Elk as an alternative Web client for Mastodon servers or as a base for other projects in the fediverse:

Note: Community deployments are NOT maintained by the Elk team. It may not be synced with Elk's source code. Please do your own research about the host servers before using them.

💖 Sponsors

We are grateful for the generous sponsorship and help of:

NuxtLabs

StackBlitz

And all the companies and individuals sponsoring Elk Team and the members. If you're enjoying the app, consider sponsoring us:

Or you can sponsor our core team members individually:

We would also appreciate sponsoring other contributors to the Elk project. If someone helps you solve an issue or implement a feature you wanted, supporting them would help make this project and OS more sustainable.

📍 Roadmap

Open board on Volta

🧑‍💻 Contributing

We're really excited that you're interested in contributing to Elk! Before submitting your contribution, please read through the following guide.

Online

You can use StackBlitz Codeflow to fix bugs or implement features. You'll also see a Codeflow button on PRs to review them without a local setup. Once the elk repo has been cloned in Codeflow, the dev server will start automatically and print the URL to open the App. You should receive a prompt in the bottom-right suggesting to open it in the Editor or in another Tab. To learn more, check out the Codeflow docs.

Open in Codeflow

Local Setup

Clone the repository and run on the root folder:

pnpm i
pnpm run dev

Warning: you will need corepack enabled, check out the Elk Contributing Guide for a detailed guide on how to set up the project locally.

We recommend installing ni, that will use the right package manager in each of your projects. If ni is installed, you can instead run:

ni
nr dev

Testing

Elk uses Vitest. You can run the test suite with:

nr test

📲 PWA

You can consult the PWA documentation to learn more about the PWA capabilities on Elk, how to install Elk PWA in your desktop or mobile device and some hints about PWA stuff on Elk.

🦄 Stack

  • Vite - Next Generation Frontend Tooling
  • Nuxt - The Intuitive Web Framework
  • Vue - The Progressive JavaScript Framework
  • VueUse - Collection of Vue Composition Utilities
  • Pinia - The Vue Store that you will enjoy using
  • Vue Macros - More macros and syntax sugar for Vue
  • UnoCSS - The instant on-demand atomic CSS engine
  • Iconify - Iconify icon sets in JSON format
  • Masto.js - Mastodon API client in TypeScript
  • shiki - A beautiful yet powerful syntax highlighter
  • vite-plugin-pwa - Prompt for update, Web Push Notifications and Web Share Target API

👨‍💻 Contributors

📄 License

MIT © 2022-PRESENT Elk contributors