A small privnote-like application written in Node/Express on the server and vanilla javascript on the client. It allows you to send client-side encrypted one-time-use messages to someone via unique URL's that are generated on the server - once someone views the note, it is decrypted on the client, then destroyed.
If you wish to take advantage of the client-side encryption/decryption, feel free to use the web UI hosted at: https://hush.dangerous.dev - if you want to implement the API in your own applications, endpoints prefixed with /api are still sever-side encrypted.
There is also a public API that you can use if you would like to integrate it into your own applications.
Public URL: https://hush.dangerous.dev
Headers: Content/Type = application/json
Body: {"note": "this is a test message"}
------------------------------------------
Success Response:
{
  "url": "https://hush.dangerous.dev/api/read/40312d32/160586e0",
  "error": null
}
Success Response:
{
  "note": "this is a test message",
  "message": "Note has been destroyed."
}
Note Not Found Response:
{
  "note": null,
  "message": "Could not find note, perhaps it has already been destroyed?"
}
Incorrect Pass Response:
{
  "note": null,
  "message": "Incorrect URL parameters. Note has been destroyed."
}
- 
Check out the project by cloning it git clone https://github.com/joshterrill/hushnoteand thencd hushnote/
- 
Install dependencies by typing npm install
- 
Create an .envfile from a copy of.env.exampleby runningcp .env.example .env
- 
Add your mongodb connection string and other required variables to the .envfile. If you wish to have a clean-up job delete any stale notes after a certain amount of days, flip the.envvariableDELETE_STALE_MESSSAGEStotrueand define theDELETE_STALE_MESSAGES_DAYSvariable top equal how many days you want to keep on hand at any given time. If this is set to true, the home page will have some text on it that shows when stale messages will be deleted.
- 
Type npm startto run