Skip to content

Latest commit

 

History

History
34 lines (26 loc) · 845 Bytes

README.md

File metadata and controls

34 lines (26 loc) · 845 Bytes

node-password-hasher

this was created to just hash passwords with an algorithm from the built-in crypto module node.js has

REQUIRED DEPENDENCIES

chalk 4.1.2, readline-sync

you can install these with the following command below

node v16.x, v17.x, v18.x, v19.x engines

npm i chalk@4.1.2 | npm i readline-sync

node v12 or something else

npm i chalk@4.1.2 && npm i readline-sync

for the ESM version just install the latest version of the chalk module without specifying a version as it's pure esm for v5 and make sure you add the following line to your package.json file for the .mjs one

"type": "module"

To run this just clone the repository with git

git clone https://github.com/PixeledLuaWriter/node-password-hasher.git
cd node-password-hasher
npm i
node /src/node-password-hasher