npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

joplin-plugin-secure-notes

v1.2.4

Published

Secure Notes is a Joplin plugin that lets you password-protect and encrypt your notes locally. It ensures your sensitive information stays private — only you can unlock and read your data.

Readme

Secure Notes

Secure Notes is a Joplin plugin that lets you password-protect and encrypt your notes locally. It ensures your sensitive information stays private — only you can unlock and read your data.

Features

  • 🔒 Password-Protected - Encrypt sensitive notes with a password of your choice
  • 👁️ Secure View - Preview encrypted notes without decrypting them permanently
  • 📁 Local Storage - Encrypted notes are stored locally in Joplin's database
  • 🛡️ Strong Encryption - Uses industry-standard AES encryption with Webcrypto API.
  • 🔄 Multiple Modes - Supports AES-CBC, AES-CTR, and AES-GCM modes with 128-bit or 256-bit key sizes.

Disclaimer

NO RECOVERY – If you forget your password, your encrypted notes are permanently lost. There’s no way to recover or reset it. Please keep backups of anything important.

NO WARRANTIES – This plugin is provided "as is" without any guarantees. While it uses industry-standard AES encryption, no system is 100% secure. The author is not liable for data loss or security issues.

Use at your own risk. By using this plugin, you accept these terms.

Installation

Plugin Market-Place (Recommended)

  1. Open Joplin and navigate to Tools > Options > Plugins
  2. Search for "Secure Notes"
  3. Click Install and restart Joplin

Manual Installation

  1. Follow the instructions in GENERATOR_DOC to generate the .jpl file.
  2. Open Joplin → Tools → Options → Plugins → Install from file.
  3. Select the generated .jpl file and install.

Usage

Encrypt Note

  1. Select the note you want to encrypt.
  2. Click the lock icon in the toolbar, or go to Tools > Secure Notes > Encrypt Note.
  3. Enter a password when prompted.
  4. The note will be encrypted and encryption tag is added.

Decrypt Note

  1. Select an encrypted note.
  2. Click the unlock icon in the toolbar, or go to Tools > Secure Notes > Decrypt Note.
  3. Enter the correct password.
  4. The note will be permanently decrypted and the encryption tag removed.

View Note

  1. Select an encrypted note.
  2. The plugin will automatically prompt for a password.
  3. Enter your password to view the note in read-only mode.
  4. The content is displayed temporarily without permanently decrypting the note.

Settings

Access plugin settings via Tools > Options > Secure Notes

AES Key Size

  • 128-bit - Faster, suitable for most use cases
  • 256-bit - Maximum security (Recommended)

AES Cipher Mode

  • CBC - Cipher Block Chaining mode
  • CTR - Counter mode
  • GCM - Galois/Counter Mode (Recommended)

Note: Changing encryption settings only affects newly encrypted notes. Previously encrypted notes will use the settings that were active when they were encrypted.

FAQ

Q: Can I encrypt all my notes or notebook at once?
A: Currently, the plugin encrypts notes individually. Batch encryption may be added in future versions.

Q: Are resources in my notes encrypted?
A: This plugin only encrypts your note contents. Resources like images, attachments are not encrypted because they’re just hyperlinks not the actual files themselves.

Q: Are encrypted notes searchable?
A: No, encrypted content cannot be searched until the note is decrypted.

Q: What happens if I uninstall the plugin?
A: Encrypted notes will remain encrypted. Reinstall the plugin to decrypt them.

Contributing

Contributions are welcome! Feel free to open issues or pull requests on GitHub.

License

MIT License © Aravind Potluri