* feat: Add new icons * Revert "feat: Add new icons" This reverts commit 0acb403fe846dbb2e48fd22de35c3568c3cb4453. * feat: Add new icons for account menu * feat: Add new Icons * feat: Add "currentPane" state to prefs view * feat: Update account menu to new design * feat: Add input component with icon & toggle * fix: sync icon & function * fix: Fix eye icon * feat: Create re-usable checkbox feat: Add "merge local" option * feat: Allow using className on IconButton * feat: Add disabled state on input feat: Make toggle circle * refactor: Move checkbox to components * feat: Handle invalid email/password error * feat: Implement new design for Create Account * feat: Implement new account menu design * feat: Add disabled option to IconButton * feat: Set account menu pane from other component * feat: Add 2fa account menu pane feat: Add lock icon * feat: Remove unnecessary 2FA menu pane feat: Reset current menu pane on clickOutside * feat: Change "Log in" to "Sign in" * feat: Remove sync from footer * feat: Change "Login" to "Sign in" feat: Add spinner to "Syncing..." refactor: Use then-catch-finally for sync * feat: Use common enableCustomServer state * feat: Animate account menu closing * fix: Reset menu pane only after it's closed * feat: Add keyDown handler to InputWithIcon * feat: Handle Enter press in inputs * Update app/assets/javascripts/components/InputWithIcon.tsx Co-authored-by: Antonella Sgarlatta <antsgar@gmail.com> * Update app/assets/javascripts/components/InputWithIcon.tsx Co-authored-by: Antonella Sgarlatta <antsgar@gmail.com> * refactor: Use server state from AccountMenuState * Update app/assets/javascripts/components/AccountMenu/CreateAccount.tsx Co-authored-by: Antonella Sgarlatta <antsgar@gmail.com> * Update app/assets/javascripts/components/AccountMenu/ConfirmPassword.tsx Co-authored-by: Antonella Sgarlatta <antsgar@gmail.com> * feat: Use common AdvancedOptions * feat: Add "eye-off" icon and toggle state * feat: Allow undefined values * refactor: Remove enableCustomServer state * feat: Persist server option state * feat: Add bottom-100 and cursor-auto util classes refactor: Use bottom-100 and cursor-auto classes * refactor: Invert ternary operator * refactor: Remove unused imports * refactor: Use toggled as prop instead of state * refactor: Change "Log in/out" to "Sign in/out" * refactor: Change "Login" to "Sign in" * refactor: Remove hardcoded width/height * refactor: Use success class * feat: Remove hardcoded width & height from svg * fix: Fix chevron-down icon Co-authored-by: Antonella Sgarlatta <antsgar@gmail.com> Co-authored-by: Antonella Sgarlatta <antonella@standardnotes.org>
Standard Notes
A safe and private place for your life's work.
Standard Notes is a simple and private notes app available on most platforms, including Web, Mac, Windows, Linux, iOS, and Android. It focuses on simplicity, and encrypts data locally before it ever touches a cloud. This means no one can read your notes but you (not even us).
Why Standard Notes?
- Simple and easy to use
- Fast and encrypted cross-platform sync
- Free sync on unlimited devices
- Extensible with editors (such as Markdown and Code), themes, and components (like Folders and Autocomplete Tags). Learn more about Extended.
- Open-source and the option to self-host your notes server. You can host your own Standard Server in a few easy steps.
- A strong focus on longevity and sustainability. Learn more.
Creating your private notes account
- Launch the web app at app.standardnotes.com.
- Click Register to create your private notes account.
- Download Standard Notes on all your devices.
- You're all set to begin enjoying a new, more freeing notes life. Standard Notes comes out of the box with end-to-end encrypted sync on all your devices.
Do More
If you're looking to power up your experience with extensions, and help support future development, learn more about Extended. Extended offers:
- Powerful editors, including the Plus Editor, Simple Markdown, Advanced Markdown, Code Editor, Vim Editor, and the popular Simple Task Editor.
- Beautiful themes to help you find inspiration in any mood, like Midnight, Focused, Futura, Titanium, and Solarized Dark.
- Powerful data care options, including daily encrypted backups delivered directly to your email inbox, as well as automated Dropbox, Google Drive, and OneDrive backups. You'll also be able to configure two-factor authentication to add an additional layer of security to your account.
- Productivity-enhancing components like Folders, Autocomplete Tags, the ever-handy Action Bar, and GitHub Push.
Publish a Blog
It's no secret we love to write. Standard Notes has become a dependable environment to do your most important work, and this includes publishing your ideas to the world. That's why we created Listed. Listed allows you to create an online publication with automatic email newsletters delivered to your readers, directly from Standard Notes.
Plug In
Plug in to the community of note-lovers and privacy-enthusiasts. Join us on Slack, on our GitHub forum, and follow new updates on Twitter.
Developers can create and publish their own extensions. Visit the documentation hub to learn more.
Questions? Find answers on our Help page.
🙏
Docker setup
Docker is the quick and easy way to try out Standard Notes. We highly recommend using our official Docker hub image.
Standalone instance
Before you start make sure you have a .env file copied from the sample .env.sample and configured with your parameters.
If your intention is not contributing but just running the app we recommend using our official image from Docker hub like this:
docker run -d -p 3001:3001 --env-file=your-env-file standardnotes/web:stable
Or if you want to use the develop branch that is in a work-in-progress state please use:
docker run -d -p 3001:3001 --env-file=your-env-file standardnotes/web:latest
You can then access the app at http://localhost:3001 (please check Docker container logs if the server has started already and is listening on connections).
Running Locally
This repo contains the core code used in the web app, as well as the Electron-based desktop application.
Instructions:
- Ensure you have Yarn installed
- Clone the repo
yarn setupyarn start
Then open your browser to http://localhost:3001.
Extensions Manager and Batch Manager:
The web app makes use of two optional native extensions, which, when running the app with Rails, can be configured to work as follows:
git submodule update --init(will load the submodules in thepublic/extensionsfolder)- Set the following environment variables in the .env file:
EXTENSIONS_MANAGER_LOCATION=extensions/extensions-manager/dist/index.html
You can also set the SF_DEFAULT_SERVER environment variable to set the default server for login and registration.
SF_DEFAULT_SERVER=https://sync.myserver
Other repositories:
- Desktop app: https://github.com/standardnotes/desktop
- Mobile (iOS & Android): https://github.com/standardnotes/mobile
- Extensions: https://github.com/sn-extensions
Contributing
For contributing we highly recommend you use our docker-compose setup that is provided in this repository.
Docker compose setup
Use the included docker-compose.yml file to build Standard Notes with docker-compose. Once your .env file has been copied and configured, simply run:
docker-compose up -d
This should load the app container and run the necessary scripts. You should then be able to reach the app at http://localhost:3001
