E2E encrypted contacts, calendars and tasks: https://www.etesync.com/ - upstream sources are at https://github.com/etesync
You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
Tom Hacohen bfc54018ce Widgets: add TimezonePicker widget. 5 years ago
public Fix type in page title. 6 years ago
src Widgets: add TimezonePicker widget. 5 years ago
.env lint: replace tslint with eslint and fix new warnings and errors. 5 years ago
.eslintrc.js eslint: changed unused-args to always warn. 5 years ago
.gitignore lint: replace tslint with eslint and fix new warnings and errors. 5 years ago
LICENSE Add license and update README. 7 years ago
README.md README: fix typo 6 years ago
deploy.sh Disable javascript inlining as was clashing with CSP. 6 years ago
package.json Widgets: add TimezonePicker widget. 5 years ago
setenv Adjust a few of the defaults. 7 years ago
tsconfig.json tsconfig: make more like the iOS one. 5 years ago
yarn.lock Widgets: add TimezonePicker widget. 5 years ago

README.md

EteSync - Secure Data Sync

The EteSync Web App - Use EteSync from the browser!

GitHub tag Chat on freenode

Usage

Note: This is still in an early stage, but it should be safe to use. It uses the battle tested sjcl javascript crypto library for encryption, so that should be fine too.

A live instance is available on: https://client.etesync.com

Please be advised that while it's probably safe enough to use the hosted client in many cases, it's generally not preferable. It's recommended that you use signed releases which's signature you manually verify and are run locally!

More info is available on the FAQ.

Running your own

You can either self-host your own client to be served from your own server, or better yet, just run an instance locally.

First make sure you have yarn install.

Then clone this repository yarn, run yarn and wait until all of the deps are installed.

Then it's recommended you run yarn build to build a production ready client you should serve (even if run locally!) and then just serve the build directory from a web server. You could, for example, use the python built-in web server by running python3 -m http.server from the build directory.

Alternatively, you can run the debug server just to verify everything works, though be aware that the app will probably be quite slow. To do that, run yarn start.

Serving from a subdirectory

In order to run your own version and serve it from a subdirectory rather than the top level of the domain, add "homepage": "/subdir-name" to the package.json file.