Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dyu/bookmarks
a simple self-hosted bookmarking app that can import bookmarks from delicious and chrome
https://github.com/dyu/bookmarks
bookmarking bookmarklet desktop-app self-hosted
Last synced: 13 days ago
JSON representation
a simple self-hosted bookmarking app that can import bookmarks from delicious and chrome
- Host: GitHub
- URL: https://github.com/dyu/bookmarks
- Owner: dyu
- License: apache-2.0
- Created: 2017-04-27T15:38:43.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2023-04-28T09:59:45.000Z (over 1 year ago)
- Last Synced: 2024-10-19T19:28:46.111Z (20 days ago)
- Topics: bookmarking, bookmarklet, desktop-app, self-hosted
- Language: CSS
- Homepage: https://apps.dyuproject.com/bookmarks/
- Size: 979 KB
- Stars: 150
- Watchers: 8
- Forks: 6
- Open Issues: 20
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE.txt
Awesome Lists containing this project
- deploy-your-own-saas - Bookmarks - hosted bookmarking app that can import bookmarks from delicious and chrome. (Uncategorized / Uncategorized)
README
# bookmarks app
a simple self-hosted bookmarking app that can import bookmarks from delicious and chrome
### Quickstart
```sh
mkdir -p target/standalone && cd target/standalone
wget https://cdn.jsdelivr.net/npm/[email protected]/bin/bookmarks-linux-standalone-x64.tar.gz
tar -xzf bookmarks-linux-standalone-x64.tar.gz
./start.sh
```![screenshot](https://github.com/dyu/bookmarks/raw/master/screenshot-browser.png)
Here's the [demo](https://dyuproject.com/bookmarks/) with a matching [bookmarklet](https://dyuproject.com/bookmarklet/)
To import from delicious and/or chrome, see [bookmarks-importer/README.md](bookmarks-importer/README.md)
## Server runtime dependencies
- jdk7## Desktop runtime dependencies
- jdk7
- [nwjs](https://nwjs.io/) [0.19.5](https://dl.nwjs.io/v0.19.5/) or higher
> (optional, you can launch the app via ```node bookmarks-ts/chrome-app.js```)## Dev requirements
- [node](https://nodejs.org/en/download/) 6.9.0 or higher
- yarn (npm install -g yarn)
- jdk7 (at /usr/lib/jvm/java-7-oracle)
- [maven](https://maven.apache.org/download.cgi)
- [protostuffdb](https://gitlab.com/dyu/protostuffdb) (downloaded below)## Setup
```sh
mkdir -p target/data/main
echo "Your data lives in user/ dir. Feel free to back it up." > target/data/main/README.txt# download protostuffdb
yarn add [email protected] && mv node_modules/protostuffdb/dist/* target/ && rm -f package.json yarn.lock && rm -r node_moduleswget -O target/fbsgen-ds.jar https://repo1.maven.org/maven2/com/dyuproject/fbsgen/ds/fbsgen-ds-fatjar/1.0.10/fbsgen-ds-fatjar-1.0.10.jar
./modules/codegen.sh
mvn installcd bookmarks-ts
yarn install
```## Dev mode
```sh
# produces a single jar the first time (bookmarks-all/target/bookmarks-all-jarjar.jar)
./run.sh# on another terminal
cd bookmarks-ts
# serves the ui via http://localhost:8080/
yarn run dev
```## Production mode
If ```run.sh``` is still running, stop that process (ctrl+c)
```sh
cd bookmarks-ts
# produces js/assets in bookmarks-ts/dist/
./build.sh
# finally, run your production app
nw .
# or
node chrome-app.js
```### To setup the bookmarklet
```sh
# close the nw window if you ran 'nw .' prior to this
nw . b
# or
node chrome-app.js b
```## Packaging for desktop (nwjs)
Exec
```sh
./scripts/archive.sh
```That script generates:
- target/bookmarks-linux-x64.tar.gz
- target/bookmarks-win-x64.zip