# mydev.notes **Repository Path**: mirrors_steveukx/mydev.notes ## Basic Information - **Project Name**: mydev.notes - **Description**: Mongo backed node server for saving notes - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-09-26 - **Last Updated**: 2026-05-17 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Notes A set of notes, save it if you want. # Requirements Notes are persisted to a [mongo](http://www.mongodb.org) database. # Running the server To run the server just run `node src/server/index` or `npm start`. The service starts by default listening to port `9874` and assumes that the URL used to access it is `http://localhost:9874/`, to change these use additional command line parameters: node src/server/index -port 8080 -base "https://mynotesapp.com/" Sessions are run through [session-middleware](https://npmjs.org/package/session-middleware) to provide a salt for its encryption either set the command line argument `-salt` or run the process with an environment variable `sessionKey`. # Limitations Authentication is only through [gauth](https://npmjs.org/package/gauth) so users need to log in through Google. # Privacy The google email address is hashed before saving to the database, and notes are encrypted using the [RC4](http://en.wikipedia.org/wiki/RC4) cipher. # Patches and Pull Requests Feel free to add things and send a pull request. # Licence Released under the MIT license.