Tiny, Secure, Zero Dependency and Secret Key Based Encryption
npm install encrip
const Encrip = require('encrip')
const plainText = 'Hello world'
const secretKey = 'mysecretkey'
const cipher = Encrip.encrypt(plainText, secretKey) // ӽԚԡԡԤӕԬԤԧԡԙ
Encrip.decrypt(cipher, secretKey) // Hello world
You can find an Encrip starter project from repl.it