Skip to content
express logo

Express

Express.js is a simple Node.js framework for single, multi-page, and hybrid web applications.

Here are 18,056 public repositories matching this topic...

yanokenken
yanokenken commented Sep 11, 2019

If you follow the readme procedure, the following error will occur in the first npm install express.

saveError ENOENT: no such file or directory, open '/xxx/xxx/package.json'

As you know, the cause is package.json does not exist.
Other users seem to have a similar error, so it seems better to add npm init to the readme.
Or I thought it would be nice to bring a link `Please follow

Alys
Alys commented Aug 6, 2019

When the Orb of Rebirth stopped being free consistently from level 100, it was announced in the Aspiring Socialites guild with this message (emphasis is mine):

"Hey Socialites! We deployed a tweak with this Gala that power users might run into. Previously, there was a sort of exploit where folks could use Fix Character Values + the Orb of Rebirth to evade having to pay Gems to change classes. N

juanda99
juanda99 commented Sep 30, 2016

It would be better to use bcrypt, beause its more secure as it's slower (uses more computing cycles).
Your code could also be better:

You wouldn't need salt field in User model, because it's saved into the same field as password does.

For authentication, something like:

var mongoose = require('mongoose'),
  bcrypt = require('bcryptjs');

var userSchema = mongoose.Schema({
  email: String,
express-validator
RMS21
RMS21 commented Jul 2, 2019

I used express-validator for some of my projects, today when i installed it and i wanted to use it like this
const expressValidator = require('express-validator'); app.use(expressValidator);
i got the error "expressValidator is not a function" this is with version "6.1.1"
i installed version "5.3.1" i used before and it worked.

Learn about express

Organization
expressjs
Website
expressjs.com
Wikipedia
Wikipedia
Loading…
You can’t perform that action at this time.