Password Hasher

Express With Users implements GitHub - node-argon2 for password hashing and verifying.
Results are computed for the password: P@ssw0rd. A page refresh will generate new hashes.
import argon2 from 'argon2';
...
const password = 'P@ssw0rd';
const hashedPassword1 = await argon2.hash(password);
const verified1 = await argon2.verify(hashedPassword1, password);
const hashedPassword2 = await argon2.hash(password);
const verified2 = await argon2.verify(hashedPassword2, password);
hashedPassword1:
$argon2id$v=19$m=65536,t=3,p=4$/8wrdjdcsVvfFsOCtDG+Gg$rQTJYRG+ZV//F6/XMBboNVPCmQLH5PNHmfJtYcTP+4w
verified1: true

Same password, different hash.

hashedPassword2:
$argon2id$v=19$m=65536,t=3,p=4$CozeOb/wO+MnDdhNGKJXOw$QqI3nGR8T3Ao7KZHqDFYuBV4rNdjmaYUPyXIxLkIojw
verified2: true