All Projects → cryptag → notes

cryptag / notes

Licence: other
CrypTag Notes: Secure note-taking and shared wiki page editing desktop app

Programming Languages

javascript
184084 projects - #8 most used programming language
CSS
56736 projects
HTML
75241 projects

Projects that are alternatives of or similar to notes

Cryptag
Encrypted, taggable, searchable cloud storage
Stars: ✭ 178 (+790%)
Mutual labels:  encryption, cloud-storage
Cryfs
Cryptographic filesystem for the cloud
Stars: ✭ 1,560 (+7700%)
Mutual labels:  encryption, cloud-storage
Rclone
"rsync for cloud storage" - Google Drive, S3, Dropbox, Backblaze B2, One Drive, Swift, Hubic, Wasabi, Google Cloud Storage, Yandex Files
Stars: ✭ 30,541 (+152605%)
Mutual labels:  encryption, cloud-storage
DAR
DAR - Disk ARchive
Stars: ✭ 58 (+190%)
Mutual labels:  encryption, cloud-storage
kodex
A privacy and security engineering toolkit: Discover, understand, pseudonymize, anonymize, encrypt and securely share sensitive and personal data: Privacy and security as code.
Stars: ✭ 70 (+250%)
Mutual labels:  encryption
fluffychat
🐑 Decentralized chat with private messages and rooms. Messages and files are encrypted using RSA
Stars: ✭ 25 (+25%)
Mutual labels:  encryption
projectpad2
Projectpad allows to manage secret credentials and server information that you need to handle as a software developer or sysadmin.
Stars: ✭ 62 (+210%)
Mutual labels:  note-taking
encrypt0r
App to encrypt and decrypt your files with a passphrase, powered by
Stars: ✭ 26 (+30%)
Mutual labels:  encryption
paperback
Paper backup generator suitable for long-term storage.
Stars: ✭ 517 (+2485%)
Mutual labels:  encryption
js-libp2p-noise
Noise libp2p handshake for js-libp2p
Stars: ✭ 21 (+5%)
Mutual labels:  encryption
xipher
🔒 Simple perfect xor encryption cipher 🔒
Stars: ✭ 61 (+205%)
Mutual labels:  encryption
Effer
Encrypted CLI Notepad written in Rust
Stars: ✭ 12 (-40%)
Mutual labels:  encryption
Crypto
封装多种CTF和平时常见加密及编码C#类库
Stars: ✭ 20 (+0%)
Mutual labels:  encryption
zarch
The Ultimate Script For Arch Linux
Stars: ✭ 49 (+145%)
Mutual labels:  encryption
notes-app-cli
A command line interface for Notes.app on macOS.
Stars: ✭ 32 (+60%)
Mutual labels:  note-taking
mongoose-field-encryption
A simple symmetric encryption plugin for individual fields. Dependency free, only mongoose peer dependency.
Stars: ✭ 47 (+135%)
Mutual labels:  encryption
uwunote
Kinda like Windows 10 Sticky notes but subjectively better - Written in go and GTK3+
Stars: ✭ 16 (-20%)
Mutual labels:  note-taking
AES
AES for microcontrollers (Arduino & Raspberry pi)
Stars: ✭ 116 (+480%)
Mutual labels:  encryption
ToDue
An android app to keep track of your ToDo's
Stars: ✭ 23 (+15%)
Mutual labels:  note-taking
Secure-File-Manager
Secure File Manager is open source file manager for keeping your files in safe.
Stars: ✭ 89 (+345%)
Mutual labels:  encryption

CrypTag Notes

CrypTag Notes is a secure note-taking app. It encrypts your notes (which are stored as Markdown files) and allows you to store them just about anywhere -- a local folder, Dropbox, Sandstorm, or your own server running cryptag-webserver.

You can also securely share these folders full of (encrypted) notes with others!

CrypTag Notes is a desktop app made with Electron and React.js that talks to a local server/API/daemon, cryptagd, which is run by the Electron app if cryptagd is not running already.

(If you would also like to store snippets of websites you visit as notes, install the CrypTag Clip Chrome extension and make sure Notes is also running.)

Installing from Binaries

For announcements of newly-released versions of CrypTag Notes, including links to conveniently pre-built versions of this app, please see these posts on my Patreon!

Pre-requisites

Install the cryptag command line tool.

cryptag

Make sure you have Go installed and $GOPATH set. Then run:

$ go get github.com/cryptag/cryptag/cmd/cryptag

If you'd like to securely store your notes in a local folder, create a local filesystem Backend called "notes" and make it the default like this:

$ cryptag init filesystem notes ~/.cryptag/backends/notes
$ cryptag setdefaultbackend notes

Or, if you'd like to securely store your notes in Sandstorm, install the CrypTag Sandstorm app, click the key icon near the top of your screen to generate a web key, then run:

$ cryptag init sandstorm notes <sandstorm_web_key>
$ cryptag setdefaultbackend notes

If someone else gave you the Sandstorm webkey and the decryption key needed to access the notes (and perhaps other data) that s/he is sharing with you, also run:

$ cryptag -b notes setkey <key>

For more on getting started with cryptag, including how to store and fetch files and other data at the command line, simply run

$ cryptag

cryptagd

Install the local daemon cryptagd that CrypTag Notes talks to:

$ go get github.com/cryptag/cryptag/servers/cryptagd

Run it in one terminal with

$ cryptagd

Meanwhile, in another terminal, run CrypTag Notes (see next section).

Installation and Running

You'll need both node (and npm) and (bower)[https://bower.io/] installed.

$ npm install

$ bower install

You should also install gulp as a global tool on your system:

$ npm install gulp -g

then

$ npm start

Development

In order to edit the CSS styles, edit the SASS files inside of static/sass. The files in static/css are generated automatically from the SASS files by running:

$ gulp sass

If you run the default gulp task:

$ gulp

gulp will run in the background and recompile the CSS any time you make changes to the SASS files.

In order to add any new bower libraries to the HTML files:

$ gulp inject

Testing

There are some placeholder tests included here that test the rendering of the individual components and the final compiled version of the app. You'll need to build the app first:

$ npm run build

If you're on Linux, instead run:

$ npm run build-linux

(TODO: automate this based on system platform detection.)

$ npm test

Thank Yous

Major thanks to @jimmcgaw for writing the foundations to this app, which began as a clone of jimmcgaw/cpassui@d072b0f, and for his many contributions since!

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].