We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
First, this is a great video, thanks for putting so much effort into it.
I do notice some places that can be further improved:
on index.js,
I think we can replace those two lines that use body-parser to be the following:
app.use(express.urlencoded({ limit: '30mb', extended: true })); app.use(express.json({ limit: '30mb' }));
app.use(express.urlencoded({ limit: '30mb', extended: true }));
app.use(express.json({ limit: '30mb' }));
p.s. bodyParser.json() doesn't have an extended option
bodyParser.json()
The new recommend algorithm for encrypting is Argon2id now.
Argon2id
reference: https://cheatsheetseries.owasp.org/cheatsheets/Password_Storage_Cheat_Sheet.html#introduction
The text was updated successfully, but these errors were encountered:
no u can use this instead, app.use(express.urlencoded({extended:true})); app.use(express.json({limit:'30mb'}));
Sorry, something went wrong.
@Rajat-nautiyal thanks.
No branches or pull requests
First, this is a great video, thanks for putting so much effort into it.
I do notice some places that can be further improved:
on index.js,
I think we can replace those two lines that use body-parser to be the following:
app.use(express.urlencoded({ limit: '30mb', extended: true }));
app.use(express.json({ limit: '30mb' }));
p.s.
bodyParser.json()
doesn't have an extended optionThe new recommend algorithm for encrypting is
Argon2id
now.reference: https://cheatsheetseries.owasp.org/cheatsheets/Password_Storage_Cheat_Sheet.html#introduction
The text was updated successfully, but these errors were encountered: