Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork30
⚓️ Anchr provides you with a toolbox for tiny tasks on the internet, especially bookmark collections
License
muety/anchr
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
Anchr is a small toolbox for common tasks on the internet, includingbookmarks,link shortening andimage uploads.
- Link shortener
- Searchable bookmarks collections
- Encrypted images uploads, usingCryptoJS
- Malicious link checking, usingSafe Browsing API
- Self-hosted and open-source
- Hosted, GDPR-compliant service atAnchr.io
- OfficialAndroid app
- Chrome and Firefoxbrowser extension
- Prometheus metrics
- Integration withShareX
- OAuth 2 authentication (Google, Facebook, ...)
- Telegram Bot (@AnchrBot)
If you like this project, pleaseconsider sponsoring it!
The idea arose when someday I considered it useful to have a collection of web links or bookmarks – like those you have in Chrome or Firefox – accessible from anywhere without needing to synchronize your browser profile. Just like if you’re somewhere on another PC, find a useful article on the internet and want to save it quickly for later at home. This is what Anchr’scollections feature does. It saves links – with an optional description for easier search and separated into categories / collections.
The second feature is toupload images. You can easily upload one or more photos from your computer or mobile device and send them to friends or include them into forum posts or the like. Special with Anchr’s image hosting is that users are given the opportunity to client-sided encrypt images with a password. As a result no one without the password will ever see their photos’ content.
The last feature areshortlinks – actually not any different from those you know from goo.gl or bit.ly. They’re useful if you have a very long web link including many query parameters, access tokens, session ids, special characters and the like and want to share them. Often special characters break the linking or your chat application has a maximum length for hyperlinks. Or you just want to keep clarity in your document or emails. In this case it can be very helpful to make the links as short as any possible. Additionally, shortlinks are checked againstGoogle's Safe Browsing API to prevent your site to reference phishing sites or the like.
Anchr’s focus is on ease and quickness of use – short loading times, flat menu hierarchies, etc. There's also a Chrome extension out there, which you can use to save or shorten links directly from the website.
In order to host Anchr on your own, you need a few things.
- Node.js >= 21.x
- MongoDB >= 6.x
- Alternative 1:Mongo Atlas (hosted cloud MongoDB)
- Alternative 2:FerretDB (with Postgres or SQLite)
$ mongosh$> use anchr; // choose'anchr' as your database$> db.createUser({user:'anchr', pwd:passwordPrompt(), roles: [{ role:'dbOwner', db:'anchr' }]}); // create user'anchr'$>exit
$ git clone https://github.com/muety/anchr
- Copy
.env.example
to.env
and edit the contents to set environment variables:PORT
: TCP port to start the server on (default:3000
)LISTEN_ADDR
: IPv4 address to make the server listen on (default:127.0.0.1
)ANCHR_PUBLIC_URL
: Public base URL of your hosted instance (no trailing slash) (default:http://localhost:3000
)ANCHR_DB_USER
: MongoDB user name (default:anchr
)ANCHR_DB_PASSWORD
: MongoDB password (required)ANCHR_DB_HOST
: MongoDB host name (default:localhost
)ANCHR_DB_PORT
: MongoDB port (default:27017
)ANCHR_DB_NAME
: MongoDB database name (default:anchr
)ANCHR_UPLOAD_DIR
: Absolute path to a file system directory (must exist!) to persist uploaded images to (default:/var/data/anchr
)ANCHR_SECRET
: A (preferably long), random character sequence to be used for the JSON Web Token (default:shhh
)ANCHR_LOG_PATH
: Absolute file path for access logs (directory must exist!) (default:/var/log/anchr/access.log
)ANCHR_ERROR_LOG_PATH
: Absolute file path for error logs (directory must exist!) (default:/var/log/anchr/error.log
)ANCHR_GOOGLE_API_KEY
: Your API key for Google APIs (required for safe browse checking incoming shortlinks), which you get from theDevelopers Console (default:''
, leave blank to disable safe browse checking)ANCHR_FB_CLIENT_ID
andANCHR_FB_SECRET
: OAuth credentials for Facebook Login (default:''
, leave blank to disable Facebook login)ANCHR_GOOGLE_CLIENT_ID
andANCHR_GOOGLE_SECRET
: OAuth credentials for Google Login (default:''
, leave blank to disable Google login)ANCHR_ALLOW_SIGNUP
: Whether to allow sign up of new users (default:true
)ANCHR_VERIFY_USERS
: Whether require new users to activate their accounts with an e-mail link (requires mailing) (default:true
)ANCHR_BASIC_AUTH
: Whether to allow authenticating usingHTTP Basic Auth (default:true
)ANCHR_EXPOSE_METRICS
: Whether to exposePrometheus metrics under the public/api/metrics
endpoint (default:false
)ANCHR_MAIL_SENDER
: Sender address in mails from Anchr.io (default:Anchr.io <noreply@anchr.io>
)ANCHR_SMTP_HOST
: SMTP server host for sending mails (leave empty to disable mailing)ANCHR_SMTP_PORT
: SMTP server port (default:587
)ANCHR_SMTP_TLS
: Whether to establish a TLS connection with the SMTP server (not to be confused with STARTTLS) (default:false
)ANCHR_SMTP_USER
: SMTP server login usernameANCHR_SMTP_PASS
: SMTP server login passwordANCHR_MAILWHALE_URL
: Public URL of yourMailWhale instance when using it for mails instead of SMTP (default:https://mailwhale.dev
)ANCHR_MAILWHALE_CLIENT_ID
: MailWhale client ID for authenticationANCHR_MAILWHALE_CLIENT_SECRET
: MailWhale client secret for authenticationANCHR_TELEGRAM_BOT_TOKEN
: Telegram bot token (from@BotFather). Leave empty for disabling Telegram integration.ANCHR_TELEGRAM_URL_SECRET
: Secret to append to Telegram webhook path for security purposes. Can be any random string.
$ source env.sh
$ corepack enable
$ yarn
$ cd public && ../node_modules/.bin/bower install && cd ..
- Run backend
$ yarn start
- Run frontend
$ yarn start:frontend
- Go tohttp://localhost:9000 and enjoy live reload
$ yarn run build
(to build frontend)$ yarn run production
source env.sh
docker-compose up
- Create a new bot with@BotFather
- Configure
ANCHR_TELEGRAM_BOT_TOKEN
andANCHR_TELEGRAM_URL_SECRET
variables - Configure the webhook:
curl https://api.telegram.org/bot<BOT_TOKEN>/setWebhook?url=https://<ANCHR_URL>/api/telegram/updates/<URL_SECRET>
ShareX (Windows only)
You can integrate Anchr withShareX on Windows and make it be used as a custom target forimage uploads andshortlinks.
- Generate an HTTP basic auth hash Base64 hash of
youremail@example.org:yourpassword
- Option 1 (Linux):
echo "youremail@example.org:yourpassword" | base64
- Option 2: Use anonline tool
- Option 1 (Linux):
- Insert your newly generated hash in
- Import both files as custom uploaders in ShareX
The project's origins lie in 2014, back when theMEAN stack was the sh*t. It was the author's first real web project and a great opportunity to learn. The project is maintained ever since, however, considered mostly feature-complete. Dependencies are updated occasionally. Because the project started quite a couple of years ago, some parts are still based on old-fashioned JavaScript ES5 syntax, alongside vintage tools likeGrunt andBower. Certainly, this is not state-of-the-art in web dev anymore. However, to keep consistency with existing code, the original code style should still be followed in new contributions.Update: Justrecently, all backend-side code was refactored to modern JavaScript syntax to ease development.
npm install -g newman
newman run"Anchr.postman_collection.json" \ -e"Anchr Environment.postman_environment.json" \ --env-var"test_password=ssshhhh"
# Backend$ yarn plugin import interactive-tools$ yarn upgrade-interactive# Frontend$ cat bower.json| jq'.dependencies | keys[]' -r| xargs npx bower update
GNU General Public License v3 (GPL-3) @Ferdinand Mütsch
About
⚓️ Anchr provides you with a toolbox for tiny tasks on the internet, especially bookmark collections
Topics
Resources
License
Uh oh!
There was an error while loading.Please reload this page.
Stars
Watchers
Forks
Sponsor this project
Uh oh!
There was an error while loading.Please reload this page.
Packages0
Uh oh!
There was an error while loading.Please reload this page.
Contributors5
Uh oh!
There was an error while loading.Please reload this page.