Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

JavaScript

Andrew Lundy
Andrew Lundy
13,269 Points

Is there a best way to store sensitive information in a JSON file?

I am building a password management application and was wondering if there was a way to store private information securely in a JSON file? For example, the username, password and email would be inside an object in the JSON file for each of my accounts.

Is there a way to do this? Or is this 100% not recommended?

1 Answer

Jesus Mendoza
Jesus Mendoza
23,288 Points

Hey Andrew.

This is 100% not recommended! I'd recommend you to encrypt your password and then use some kind of mechanism to decrypt them.

Cheers!