Left Continue shopping
Your Order

You have no items in your cart

DVDs sold at Golden Discs are for REGION 2 only and will NOT play outside the EU.

Guru ^new^ - Moviesmad

// Define the User model const userSchema = new mongoose.Schema({ name: String, email: String, password: String, favoriteGenres: [String], favoriteActors: [String], favoriteDirectors: [String] }); const User = mongoose.model('User', userSchema);

// Connect to MongoDB mongoose.connect('mongodb://localhost/moviesmadguru', { useNewUrlParser: true, useUnifiedTopology: true }); moviesmad guru

// Create a new user app.post('/users', (req, res) => { const user = new User(req.body); user.save((err) => { if (err) { res.status(400).send(err); } else { res.send(user); } }); }); // Define the User model const userSchema = new mongoose

Become a member

Join our VIP loyalty club for perks, rewards and exclusive access to all our upcoming events

Already have an account? Sign In

Earn stamps for every €10 you spend online or in-store.

For in-store purchases download our APP on Apple or Android and just scan your receipts with your phone.