A smooth bookmarks management web app, shipped with special optimization for quick-search & quick-open, which will boost your productivity.
Currently it supports linkding
, we are planning to make Linka
a more flexible app to support other popular backends.
❤️ The logo was copied from the project Benthos in this commit.
- full text search
- multi keywords, substract keywords support
- instantly open search results
- search on type
- dark/light mode
- hotkeys
Following configs are for testing:
demo linkding base url
: https://link.unoiou.comdemo token
(restricted):a6816f654f87197545cd66bfd2f8e294c40f1ee4
- type any keywords, seperated by space, results will be intersection
- use keywords start with
!
to exclude - type
Enter
to open search results in new tabs
cmd+l
orctrl+l
to focus on the search boxcmd+Down Arrow
orctrl+Down Arrow
/cmd+Down Arrow
orctrl+Down Arrow
to navigate the resultscmd+Enter
orctrl+Enter
with an item selected to open it as a new tab or open all bookmarks when no item is selected
Currently, this app only supports the "linkding" backend. However, our plan is to make Linka a backend-dependent app.
To ensure compatibility with Linka, the backend service must enable "Cross-Origin Resource Sharing" (CORS).
You can nable CORS
in backend by adding following headers to HTTP response:
Access-Control-Allow-Origin: *
Access-Control-Allow-Methods: GET,POST,OPTIONS,PUT,DELETE
Access-Control-Allow-Headers: *
Access-Control-Max-Age: 1000000
Install nodejs
and yarn
.
Run yarn install
& yarn dev
to start up.
Run yarn build
then publish the ./build
directory to a static http server like nginx, following is a demo nginx config part:
# linka
server {
listen 443 ssl http2;
server_name linka.unoiou.com;
index index.html;
location / {
root /home/ubuntu/static_sites/linka/build;
try_files $uri $uri/ /index.html;
}
}
Use pre build image:
docker pull cmsax/linka:latest
docker run --name my-own-linka -p 80:80 -d cmsax/linka:latest
Build on your own:
docker build -t my/linka:latest .
docker run --name my-own-linka -p 80:80 -d my/linka:latest