Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dobladov/koreader-node-sync-server
Self hostable synchronization service for koreader devices for node.js
https://github.com/dobladov/koreader-node-sync-server
Last synced: 5 days ago
JSON representation
Self hostable synchronization service for koreader devices for node.js
- Host: GitHub
- URL: https://github.com/dobladov/koreader-node-sync-server
- Owner: dobladov
- Created: 2019-02-21T23:17:58.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2023-01-07T21:25:48.000Z (almost 2 years ago)
- Last Synced: 2024-08-02T17:32:09.044Z (3 months ago)
- Language: JavaScript
- Size: 184 KB
- Stars: 7
- Watchers: 2
- Forks: 0
- Open Issues: 9
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
![Test](https://github.com/dobladov/koreader-node-sync-server/workflows/Test/badge.svg)
# Koreader node sync server
Self hostable synchronization service for koreader devices for node.js## Instalation
```
git clone https://github.com/dobladov/koreader-node-sync-server.git
cd koreader-node-sync-server
npm install
```## Optional Configuration
Create a `.env` file in the root directory with this content
```
SERVER_HOST=0.0.0.0
SERVER_PORT=3000
CERTIFICATES_FOLDER = './certificates'
```Create the certificates for https
```
mkdir certificates
openssl req -nodes -new -x509 -keyout certificates/server.key -out certificates/server.cert
```## Run the server
```
npm start
```## Check if is running
```
curl -k http://localhost:3000/healthcheck
```Set your Koreader url to [http://localhost:3000](http://localhost:3000)